aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-21 21:33:18 +0000
committerChris Lattner <sabre@nondot.org>2003-10-21 21:33:18 +0000
commitdb15798e2e6a0d307a5692b43f024e84a492b73b (patch)
treed8d726b1922f88927cbc8dc181556b608ea1e3a4 /test/C++Frontend
parente04c2630f24df62c8fd2f61de07496c647822f48 (diff)
downloadexternal_llvm-db15798e2e6a0d307a5692b43f024e84a492b73b.zip
external_llvm-db15798e2e6a0d307a5692b43f024e84a492b73b.tar.gz
external_llvm-db15798e2e6a0d307a5692b43f024e84a492b73b.tar.bz2
New testcase, fixed in the C++ frontend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9353 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend')
-rw-r--r--test/C++Frontend/2003-10-21-InnerClass.cpp.tr12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/C++Frontend/2003-10-21-InnerClass.cpp.tr b/test/C++Frontend/2003-10-21-InnerClass.cpp.tr
new file mode 100644
index 0000000..4f7b436
--- /dev/null
+++ b/test/C++Frontend/2003-10-21-InnerClass.cpp.tr
@@ -0,0 +1,12 @@
+// RUN: %llvmgcc -xc++ -S -o - %s | grep '"struct.X::Y"'
+struct X {
+
+ struct Y {
+ Y();
+ };
+
+};
+
+X::Y::Y() {
+
+}