foo<T>(t: T)1 fn foo<T>(t: T) {
2     || { t; t; }; //~ ERROR: use of moved value
3 }
4 
main()5 fn main() {}
6