Sebastian Redl | 1450ef9 | 2010-07-30 17:25:10 +0000 | [diff] [blame] | 1 | void g(); |
2 | |||||
3 | struct two {}; | ||||
4 | void one(); | ||||
5 | struct three {}; // for verification | ||||
Sebastian Redl | d8c5abb | 2010-08-02 18:30:12 +0000 | [diff] [blame] | 6 | |
7 | void many(int k); | ||||
8 | struct many; | ||||
9 | void many(int l); | ||||
10 | struct many {}; | ||||
11 | |||||
12 | void noret() __attribute__((noreturn)); |