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). | ||||
Tanya Lattner | 12ff968 | 2004-11-06 20:38:27 +0000 | [diff] [blame^] | 4 | * XFAIL: linux,darwin |
5 | */ | ||||
John Criswell | a29b94d | 2004-01-01 23:58:07 +0000 | [diff] [blame] | 6 | struct one |
7 | { | ||||
8 | int a; | ||||
9 | int values []; | ||||
10 | }; | ||||
11 | |||||
12 | struct one hobbit = {5, {1, 2, 3}}; | ||||
13 |