1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-27 05:53:07 +01:00
llvm-mirror/test/Regression/C++Frontend/2003-10-21-InnerClass.cpp.tr
Chris Lattner 520372242b New testcase, fixed in the C++ frontend
llvm-svn: 9353
2003-10-21 21:33:18 +00:00

13 lines
116 B
Plaintext

// RUN: %llvmgcc -xc++ -S -o - %s | grep '"struct.X::Y"'
struct X {
struct Y {
Y();
};
};
X::Y::Y() {
}