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