]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-while-cond.rs
62a9bdd2020559817e7e6bf8c2fca085cfcd7d9c
[rust.git] / src / test / ui / borrowck / borrowck-while-cond.rs
1 fn main() {
2     let x: bool;
3     while x { } //~ ERROR E0381
4 }