aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/2009-08-05-ZeroInitWidth.cpp
blob: 6e62ae4e446190dfa2842cb59fd406ef5f171eea (plain)
1
2
3
4
5
6
7
8
9
10
// 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 = {
  {}
};