1 void* foo(void *p)
2 {
3   return p; // break here
4 }
5 
6 int main() {
7   while (1) {
8     foo(0);
9   }
10   return 0;
11 }
12