1 2 3 4 5 6 7 8
#![crate_type = "lib"] #![feature(const_closures, const_trait_impl)] #![allow(incomplete_features)] pub const fn test() { let cl = const || {}; cl(); }