1
Fork 0

Move tests

This commit is contained in:
Caio 2023-05-14 09:49:20 -03:00
parent c373194cb6
commit 25e395653d
25 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,11 @@
// run-pass
// pretty-expanded FIXME #23616
pub fn main () {
let mut line = "".to_string();
let mut i = 0;
while line != "exit".to_string() {
line = if i == 9 { "exit".to_string() } else { "notexit".to_string() };
i += 1;
}
}