2017-08-13 03:46:49 -05:00
|
|
|
fn id<T>(x: T) -> T { x }
|
|
|
|
|
2013-03-21 19:29:49 -05:00
|
|
|
fn f<T:'static>(_: T) {}
|
2013-01-10 13:16:54 -06:00
|
|
|
|
|
|
|
fn main() {
|
2021-08-24 19:39:40 -05:00
|
|
|
|
|
|
|
let x: Box<_> = Box::new(3);
|
2013-01-10 13:16:54 -06:00
|
|
|
f(x);
|
2021-08-24 19:39:40 -05:00
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
let x = &id(3); //~ ERROR temporary value dropped while borrowed
|
2014-08-27 20:46:52 -05:00
|
|
|
f(x);
|
2013-01-10 13:16:54 -06:00
|
|
|
}
|