aboutsummaryrefslogtreecommitdiff
path: root/example/recurse1.c
blob: e5a86bcc3ea615512a4155aed99038fee67b76a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Stack overflow on main thread.

void qux();

void foo() {
  qux();
}
void bar() {
  foo();
}
void qux() {
  bar();
}

int main() {
  foo();
}