using5.C: usified using[567].C here
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Fri, 4 Dec 1998 12:57:50 +0000 (12:57 +0000)
committerAlexandre Oliva <oliva@gcc.gnu.org>
Fri, 4 Dec 1998 12:57:50 +0000 (12:57 +0000)
* g++.old-deja/g++.other/using5.C: usified using[567].C here
* g++.old-deja/g++.other/using6.C: removed
* g++.old-deja/g++.other/using7.C: Mark Mitchel removed it

From-SVN: r24091

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.other/using5.C
gcc/testsuite/g++.old-deja/g++.other/using6.C [deleted file]

index 40b8f697e74b6855d2b09f2c05c0ba5d31cc1589..c68ef51c1cb74a8b4504fda26476f15ecc823b1a 100644 (file)
@@ -1,5 +1,9 @@
 1998-12-04  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * g++.old-deja/g++.other/using5.C: usified using[567].C here
+       * g++.old-deja/g++.other/using6.C: removed
+       * g++.old-deja/g++.other/using7.C: Mark Mitchel removed it
+
        * g++.old-deja/g++.pt/spec20.C: Re-insert non-bogus ERROR marks.
 
 1998-12-03  Alexandre Oliva  <oliva@dcc.unicamp.br>
index df610b21f67021105bc30f48289da95ef18eaf80..57a9507b0b37f13f266c347b2874326f35d9c0bf 100644 (file)
@@ -11,5 +11,7 @@ struct bar {
 
 struct foo : bar {
   using bar::t;
-  void baz(t pos);
+  t field;
+  t meth();
+  void baz(t arg);
 };
diff --git a/gcc/testsuite/g++.old-deja/g++.other/using6.C b/gcc/testsuite/g++.old-deja/g++.other/using6.C
deleted file mode 100644 (file)
index 31aa7cd..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Build don't link:
-
-// Based on bug report by Klaus-Georg Adams
-// <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
-
-struct bar {
-  typedef bar t;
-};
-
-struct foo : bar {
-  using bar::t;
-  t baz(); 
-};