trait A { } struct B<'a, T:'a>(&'a (dyn A + 'a)); trait X { } impl<'a, T> X for B<'a, T> {} fn i<'a, T, U>(v: Box+'a>) -> Box { Box::new(B(&*v)) as Box //~^ ERROR the parameter type `U` may not live long enough [E0310] //~| ERROR the parameter type `U` may not live long enough [E0310] //~| ERROR the parameter type `U` may not live long enough [E0310] //~| ERROR lifetime may not live long enough //~| ERROR cannot return value referencing local data `*v` [E0515] //~| ERROR the parameter type `U` may not live long enough [E0310] } fn main() {}