1 2 3 4 5 6 7 8
fn new<T>() -> &'static T { panic!() } fn main() { let &v = new(); //~^ ERROR type annotations needed }