blob: 2e6aff1618bfbc62d53b0f04210ea96920c53bff [file] [log] [blame]
fn id<T>(x: T) -> T { x }
const FOO: usize = 3;
fn foo() -> &'static usize { &id(FOO) }
//~^ ERROR: cannot return reference to temporary value
fn main() {
}