rust/tests/ui/borrowck/issue-46471.rs

8 lines
135 B
Rust

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