rust/src/test/ui/static/static-region-bound.rs
2018-12-25 21:08:33 -07:00

13 lines
210 B
Rust

#![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 borrowed value does not live long enough
f(x);
}