blob: 151c5f90534c505d0107da64986d37699c7d636f [file] [log] [blame]
Devang Pateldabc3e92010-08-12 00:02:44 +00001// RUN: %clang -emit-llvm -g -S %s -o - | grep HdrSize
2struct A {
3 int one;
4 static const int HdrSize = 52;
5 int two;
6 A() {
7 int x = 1;
8 }
9};
10int main() {
11 A a;
12}