rustc/tests/ui/unboxed-closures/unboxed-closures-static-call-fn-once.rs
2025-02-17 11:14:05 +01:00

7 lines
69 B
Rust

//@ run-pass
fn main() {
let onetime = |x| x;
onetime(0);
}