blob: 8922005d2f82c6c154efb001f187e65519618cf0 [file] [log] [blame]
fn foo() -> &'static u32 {
let x = 0;
&x
//~^ ERROR cannot return reference to local variable `x` [E0515]
}
fn main() { }