• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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;
AA6   A() {
7     int x = 1;
8   }
9 };
main()10 int main() {
11   A a;
12 }
13