blob: 752081b78f27568f11d3a501e4d8c9068255bb21 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
#![feature(box_syntax)]
fn leaky<T>(_t: T) { }
pub fn main() { let x = box 10; leaky::<Box<isize>>(x); }