g++.dg/lookup/exception1.C: New test.
authorNathanael Nerode <neroden@gcc.gnu.org>
Wed, 1 Jan 2003 21:03:50 +0000 (21:03 +0000)
committerNathanael Nerode <neroden@gcc.gnu.org>
Wed, 1 Jan 2003 21:03:50 +0000 (21:03 +0000)
From-SVN: r60763

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

index a9fff0808652bb230522e602f95c01fc15171c6f..4439f02a9989cbd6db01fec164a3a667ca9b1b40 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;
+}