1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm %s -o /dev/null 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc /* 4*f4a2713aSLionel Sambuc * This regression test ensures that the C front end can compile initializers 5*f4a2713aSLionel Sambuc * even when it cannot determine the size (as below). 6*f4a2713aSLionel Sambuc */ 7*f4a2713aSLionel Sambuc struct one 8*f4a2713aSLionel Sambuc { 9*f4a2713aSLionel Sambuc int a; 10*f4a2713aSLionel Sambuc int values []; 11*f4a2713aSLionel Sambuc }; 12*f4a2713aSLionel Sambuc 13*f4a2713aSLionel Sambuc struct one hobbit = {5, {1, 2, 3}}; 14*f4a2713aSLionel Sambuc 15