1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -g %s -o - 2*f4a2713aSLionel Sambuc struct TEST2 3*f4a2713aSLionel Sambuc { 4*f4a2713aSLionel Sambuc int subid:32; 5*f4a2713aSLionel Sambuc int :0; 6*f4a2713aSLionel Sambuc }; 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc typedef struct _TEST3 9*f4a2713aSLionel Sambuc { 10*f4a2713aSLionel Sambuc TEST2 foo; 11*f4a2713aSLionel Sambuc TEST2 foo2; 12*f4a2713aSLionel Sambuc } TEST3; 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc TEST3 test = 15*f4a2713aSLionel Sambuc { 16*f4a2713aSLionel Sambuc {0}, 17*f4a2713aSLionel Sambuc {0} 18*f4a2713aSLionel Sambuc }; 19*f4a2713aSLionel Sambuc main()20*f4a2713aSLionel Sambucint main() { return 0; } 21