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