llvm-6502/test/C++Frontend/2003-08-27-TypeNamespaces.cpp
Chris Lattner dd408e12d6 new old testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8574 91177308-0d34-0410-b5e6-96231b3b80d8
2003-09-17 05:00:56 +00:00

15 lines
128 B
C++

namespace foo {
namespace bar {
struct X { X(); };
X::X() {}
}
}
namespace {
struct Y { Y(); };
Y::Y() {}
}