cbc/test/deref-semcheck3.cb

7 lines
91 B
Plaintext

struct st { int x; };
int main(int argc, char **argv) {
struct st s;
return *s;
}