1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
12 lines
176 B
C++
12 lines
176 B
C++
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
// rdar://7114564
|
|
struct A {
|
|
unsigned long long : (sizeof(unsigned long long) * 8) - 16;
|
|
};
|
|
struct B {
|
|
A a;
|
|
};
|
|
struct B b = {
|
|
{}
|
|
};
|