rust/tests/ui/rfcs/rfc-2632-const-trait-impl/nested-closure.rs
2024-02-16 20:02:50 +00:00

13 lines
199 B
Rust

//@ check-pass
#![feature(const_trait_impl, lazy_cell)]
use std::sync::LazyLock;
static EXTERN_FLAGS: LazyLock<String> = LazyLock::new(|| {
let x = || String::new();
x()
});
fn main() {}