]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unboxed-closures/unboxed-closures-static-call-fn-once.rs
diagnostics: give a special note for unsafe fn / Fn/FnOnce/FnMut
[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 }