blob: 89a79f244639be773cea2637183a65826c1306be [file] [log] [blame]
Duncan Sands5fe97a02010-11-25 21:39:17 +00001// RUN: %llvmgxx -S %s -o -
Chris Lattner5ccb3af2009-08-06 06:18:52 +00002// rdar://7114564
3struct A {
4 unsigned long long : (sizeof(unsigned long long) * 8) - 16;
5};
6struct B {
7 A a;
8};
9struct B b = {
10 {}
11};
12