summaryrefslogtreecommitdiffstats
path: root/src/test/ui/static/static-region-bound.rs
blob: d70706e5764f636bd48ab1e9ea68cf9269f9276d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fn id<T>(x: T) -> T { x }

fn f<T:'static>(_: T) {}

fn main() {

    let x: Box<_> = Box::new(3);
    f(x);

    let x = &id(3); //~ ERROR temporary value dropped while borrowed
    f(x);
}