| 1 | void g(); |
|---|---|
| 2 | |
| 3 | struct two {}; |
| 4 | void one(); |
| 5 | struct three {}; // for verification |
| 6 | |
| 7 | void many(int k); |
| 8 | struct many; |
| 9 | void many(int l); |
| 10 | struct many {}; |
| 11 | |
| 12 | void noret() __attribute__((noreturn)); |
| 13 |
| 1 | void g(); |
|---|---|
| 2 | |
| 3 | struct two {}; |
| 4 | void one(); |
| 5 | struct three {}; // for verification |
| 6 | |
| 7 | void many(int k); |
| 8 | struct many; |
| 9 | void many(int l); |
| 10 | struct many {}; |
| 11 | |
| 12 | void noret() __attribute__((noreturn)); |
| 13 |