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

}