nested1.C: Test moved from ...
authorJeffrey D. Oldham <oldham@codesourcery.com>
Tue, 28 Jan 2003 20:11:44 +0000 (20:11 +0000)
committerJeffrey D. Oldham <oldham@gcc.gnu.org>
Tue, 28 Jan 2003 20:11:44 +0000 (20:11 +0000)
2003-01-28  Jeffrey D. Oldham  <oldham@codesourcery.com>

* g++.dg/lookup/nested1.C: Test moved from ...
* g++.old-deja/g++.other/lookup24.C: ... here.

From-SVN: r62007

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lookup/nested1.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.other/lookup24.C [deleted file]

index 1be51bac2f723acf1bda331c19b7257499534016..c2f60e6ede791ed58569484cd9a24869abb9c7ce 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-28  Jeffrey D. Oldham  <oldham@codesourcery.com>
+
+       * g++.dg/lookup/nested1.C: Test moved from ...
+       * g++.old-deja/g++.other/lookup24.C: ... here.
+
 Tue Jan 28 12:19:35 CET 2003  Jan Hubicka  <jh@suse.cz>
 
        * gcc.dg/i386-cmov5.c:  New test.
diff --git a/gcc/testsuite/g++.dg/lookup/nested1.C b/gcc/testsuite/g++.dg/lookup/nested1.C
new file mode 100644 (file)
index 0000000..c8988e2
--- /dev/null
@@ -0,0 +1,25 @@
+// Build don't link:
+// 
+// Copyright (C) 2003 Free Software Foundation, Inc.
+// Contributed by Raymond <raymond@magma.magma-da.com>.
+// 
+// PR c++/47  The parser failed to resolve 'B' in the return type of
+// A::C::D::foo.
+
+class A {
+public:
+  class B;
+  class C;
+};
+
+class A::B {
+};
+
+class A::C {
+  class D;
+};
+
+class A::C::D {
+public:
+  B* foo();
+};
diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup24.C b/gcc/testsuite/g++.old-deja/g++.other/lookup24.C
deleted file mode 100644 (file)
index c8988e2..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link:
-// 
-// Copyright (C) 2003 Free Software Foundation, Inc.
-// Contributed by Raymond <raymond@magma.magma-da.com>.
-// 
-// PR c++/47  The parser failed to resolve 'B' in the return type of
-// A::C::D::foo.
-
-class A {
-public:
-  class B;
-  class C;
-};
-
-class A::B {
-};
-
-class A::C {
-  class D;
-};
-
-class A::C::D {
-public:
-  B* foo();
-};