1 2 3 4 5 6 7 8 9 10 11 12
// RUN: %clang -emit-llvm -g -S %s -o - | grep HdrSize struct A { int one; static const int HdrSize = 52; int two; A() { int x = 1; } }; int main() { A a; }