]> git.proxmox.com Git - rustc.git/blob - tests/ui/borrowck/borrowck-if-no-else.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / borrowck / borrowck-if-no-else.rs
1 fn foo(x: isize) { println!("{}", x); }
2
3 fn main() {
4 let x: isize; if 1 > 2 { x = 10; }
5 foo(x); //~ ERROR E0381
6 }