1struct A {};
2
3struct A foo()
4{
5  return foo();
6}
7
8void bar()
9{
10  foo();
11}
12