blob: 716949cdf6fd957b9426517f1365e4613b14c73a [file] [log] [blame]
fn c() {
var a = 1;
a = a + 2;
}
fn b() {
c();
c();
}