mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
12 lines
178 B
C++
12 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 = {
|
|
{}
|
|
};
|
|
|