rust/tests/ui/borrowck/borrowck-for-loop-uninitialized-binding.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
122 B
Rust
Raw Normal View History

fn f() -> isize {
let mut x: isize;
for _ in 0..0 { x = 10; }
return x; //~ ERROR E0381
}
fn main() { f(); }