summaryrefslogtreecommitdiff
path: root/release_23/test/C++Frontend/2003-10-21-InnerClass.cpp.tr
blob: fadd51d22670a6000fc545b34bc48b989dcdc3eb (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() {

}