blob: 10a5cccbceef023d228a22bdfc3fd2d8d6437052 [file] [log] [blame]
use std::any::Any;
fn foo<T: Any>(value: &T) -> Box<dyn Any> {
Box::new(value) as Box<dyn Any>
//~^ ERROR explicit lifetime required in the type of `value` [E0621]
}
fn main() {
let _ = foo(&5);
}