1 // run-pass
2 // pretty-expanded FIXME #23616
3 
main()4 fn main() {
5     let onetime = |x| x;
6     onetime(0);
7 }
8