blob: 8804772e2827a3629bea5a4ffd046dc0ab8fa515 [file] [log] [blame] [edit]
//@ compile-flags: -Znext-solver
#![crate_type = "lib"]
#![feature(const_closures, const_trait_impl)]
pub const fn test() {
let cl = const || {};
cl();
}