mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-27 21:50:40 +00:00
a03a60b717
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78289 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
178 B
C++
13 lines
178 B
C++
// RUN: %llvmgxx -c -emit-llvm %s -o -
|
|
// rdar://7114564
|
|
struct A {
|
|
unsigned long long : (sizeof(unsigned long long) * 8) - 16;
|
|
};
|
|
struct B {
|
|
A a;
|
|
};
|
|
struct B b = {
|
|
{}
|
|
};
|
|
|