blob: 598c1bf5c3f0c057574009304602ee38bbe0db4b [file] [edit]
extern int bar(void);
int main() {
int x = bar();
x += 2; // break here
return x;
}