IL
Size: a a a
IL
0
Ф
IL
AZ
0
CC
AZ
AZ
CC
AZ
CC
/
BB
KK
Т8
match IntoIterator::into_iter(0..5) {
mut iter => loop {
let next;
match iter.next() {
Some(val) => next = val,
None => break,
};
let x = next;
let () = {
println!("{}", x);
};
},
}Т8
Т8