rust/tests/ui/borrowck/borrowck-return.rs

7 lines
88 B
Rust

fn f() -> isize {
let x: isize;
return x; //~ ERROR E0381
}
fn main() { f(); }