• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // run-pass
2 #![allow(dead_code)]
3 // Issue #976
4 
5 
6 // pretty-expanded FIXME #23616
7 
f<T>(x: Box<T>)8 fn f<T>(x: Box<T>) {
9     let _x2 = x;
10 }
main()11 pub fn main() { }
12