mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
ece2bb9052
llvm-svn: 78289
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 = {
|
|
{}
|
|
};
|
|
|