blob: 6bfe645c7c6e09e9b48ac6eb8fc4f9ecaa83ca00 [file]
struct Structure {
int number;
};
struct Opaque;
int puts(const char *s);
int main(int argc, char **argv) {
struct Structure s;
s.number = 30;
struct Opaque *opaque = &s;
puts("break here");
return 0;
}