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