blob: ffbee5a4bb789e52b63262265c35d74b570b2f1f [file] [log] [blame]
//@ run-pass
fn f<T: 'static>(_x: T) {}
pub fn main() {
f(Box::new(5));
}