rust/tests/ui/rfcs/rfc-2632-const-trait-impl/nested-closure.rs
2023-06-05 16:09:46 +00:00

13 lines
198 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() {}