aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend/2003-10-21-InnerClass.cpp.tr
blob: 0e8ff2cd30c894c0f694f1cd56ae87b22acee871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %llvmgcc -xc++ -S -o - %s | grep "struct.X::Y"
struct X {

  struct Y {
    Y();
  };

};

X::Y::Y() {

}