]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unboxed-closures/unboxed-closures-static-call-fn-once.rs
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[rust.git] / src / test / ui / unboxed-closures / unboxed-closures-static-call-fn-once.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 fn main() {
5     let onetime = |x| x;
6     onetime(0);
7 }