John Criswell | a29b94d | 2004-01-01 23:58:07 +0000 | [diff] [blame^] | 1 | /* |
2 | * This regression test ensures that the C front end can compile initializers | ||||
3 | * even when it cannot determine the size (as below). | ||||
4 | */ | ||||
5 | struct one | ||||
6 | { | ||||
7 | int a; | ||||
8 | int values []; | ||||
9 | }; | ||||
10 | |||||
11 | struct one hobbit = {5, {1, 2, 3}}; | ||||
12 |