blob: f133133b3365038fbafbd29a56a45544aa05473e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![feature(box_syntax)]
fn id<T>(x: T) -> T { x }
fn f<T:'static>(_: T) {}
fn main() {
let x: Box<_> = box 3;
f(x);
let x = &id(3); //~ ERROR temporary value dropped while borrowed
f(x);
}
|