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