rust/tests/ui/static/static-closures.rs
2025-08-19 13:12:31 +00:00

6 lines
121 B
Rust

fn main() {
static || {};
//~^ ERROR closures cannot be static
//~| ERROR coroutine syntax is experimental
}