blob: d68a369f1f74f5010d29d5a5288c854403e34c94 [file] [log] [blame]
void bar();
void foo(int n) {
for (int i = 0; i < n; ++i) for (int j = 0; j < n; ++j)
bar();
}
void quack() {
foo(4);
}
void quack2() {
foo(4);
}