1 // run-pass
2 #![allow(unused_mut)]
3 // pretty-expanded FIXME #23616
4 
main()5 fn main() {
6     let mut unboxed = || {};
7     unboxed();
8 }
9