12 lines
112 B
C++
12 lines
112 B
C++
|
void foo(int x) {}
|
||
|
|
||
|
struct FooBar {
|
||
|
int i;
|
||
|
};
|
||
|
|
||
|
int main() {
|
||
|
FooBar f;
|
||
|
foo(1);
|
||
|
return 0; // Break here
|
||
|
}
|