New testcase, fixed in the C++ frontend

llvm-svn: 9353
This commit is contained in:
Chris Lattner 2003-10-21 21:33:18 +00:00
parent 9d6053158b
commit 1e0c213eab
1 changed files with 12 additions and 0 deletions

View File

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