blob: 6e62ae4e446190dfa2842cb59fd406ef5f171eea [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm %s -o -
struct A {
unsigned long long : (sizeof(unsigned long long) * 8) - 16;
};
struct B {
A a;
};
struct B b = {
{}
};