blob: 8adf3ba433d96e4abf772d84291698c0148a4508 [file] [log] [blame]
#![crate_type = "lib"]
#![feature(const_closures, const_trait_impl, effects)]
pub const fn test() {
let cl = const || {};
cl();
}