Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![crate_type = "lib"]
#![feature(const_closures, const_trait_impl, effects)]
pub const fn test() {
let cl = const || {};
cl();
}