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