blob: 947be634f5b9b6acb281e4749d054ec9b62669ca [file]
struct MyString {
const char *guts;
};
struct S {
struct MyString a;
struct MyString b;
};
void stop() {}
int main() {
struct S s;
s.a.guts = "hello";
s.b.guts = "world";
stop(); // break here
return 0;
}