OSDN Git Service

g++.dg/lookup/exception1.C: New test.
authorneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Jan 2003 21:03:50 +0000 (21:03 +0000)
committerneroden <neroden@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Jan 2003 21:03:50 +0000 (21:03 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@60763 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lookup/exception1.C [new file with mode: 0644]

index a9fff08..4439f02 100644 (file)
@@ -1,5 +1,7 @@
 2003-01-01  Nathanael Nerode  <neroden@gcc.gnu.org>
 
+       g++.dg/lookup/exception1.C: New test.
+
        g++.dg/lookup/template1.C: New test.
 
        g++.dg/parse/namespace2.C: New test.
diff --git a/gcc/testsuite/g++.dg/lookup/exception1.C b/gcc/testsuite/g++.dg/lookup/exception1.C
new file mode 100644 (file)
index 0000000..e7a5ca1
--- /dev/null
@@ -0,0 +1,33 @@
+/* PR 2743 */
+/* {dg-do compile} */
+
+namespace ns {
+  class Exception
+  {
+  };
+}
+
+namespace ns
+{
+  class Test {
+    public:
+      inline Test() throw( Exception );
+      inline Test(int n ) throw( Exception );
+    private:
+      int i;
+  };
+}
+
+// This line used to fail because Exception wasn't looked up in the
+// right scope.
+ns::Test::Test() throw( Exception ) : i( 1 )
+{
+}
+
+ns::Test::Test( int n ) throw( Exception ) : i( n )
+{
+}
+
+int main(int argc, char* argv) {
+  ns::Test test;
+}