blob: f6d2cb9e173f5f15dbb3672032b61af5a5365018 [file] [log] [blame]
fn c(z: i32) {
var a = 1 + z;
a = a + 2;
}
fn b() {
c(2);
c(3);
}