From: Chris Lattner Date: Wed, 17 Sep 2003 05:00:56 +0000 (+0000) Subject: new old testcase X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dd408e12d6bf6e9bf8cfed60030d7720530ce6cc;p=oota-llvm.git new old testcase git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8574 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/C++Frontend/2003-08-27-TypeNamespaces.cpp b/test/C++Frontend/2003-08-27-TypeNamespaces.cpp new file mode 100644 index 00000000000..01da73876f4 --- /dev/null +++ b/test/C++Frontend/2003-08-27-TypeNamespaces.cpp @@ -0,0 +1,14 @@ + +namespace foo { + namespace bar { + struct X { X(); }; + + X::X() {} + } +} + + +namespace { + struct Y { Y(); }; + Y::Y() {} +}