rust/src/test/ui/issues/issue-46471.rs
Christopher Vittal cfdd6ba77e Update tests
2019-05-03 03:11:37 -04:00

8 lines
135 B
Rust

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