Fixed the CBE on Solaris/Sparc. We need to define the return value of
[oota-llvm.git] / test / C++Frontend / 2003-08-27-TypeNamespaces.cpp
1
2 namespace foo {
3   namespace bar {
4     struct X { X(); };
5
6     X::X() {}
7   }
8 }
9
10
11 namespace {
12   struct Y { Y(); };
13   Y::Y() {}
14 }