diff options
author | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-12-04 12:57:50 +0000 |
---|---|---|
committer | oliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-12-04 12:57:50 +0000 |
commit | c29382be5b4f4bbff59501c58641282f27d4c1a6 (patch) | |
tree | 1455f14a2f3a6a77806cf1ef702cde3d35acef8a /gcc/testsuite | |
parent | 78e49515f67a3b85292ce00180eade5e0d53aef7 (diff) | |
download | gcc-c29382be5b4f4bbff59501c58641282f27d4c1a6.tar.gz |
* 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
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24091 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/using5.C | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/using6.C | 13 |
3 files changed, 7 insertions, 14 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 40b8f697e74..c68ef51c1cb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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> diff --git a/gcc/testsuite/g++.old-deja/g++.other/using5.C b/gcc/testsuite/g++.old-deja/g++.other/using5.C index df610b21f67..57a9507b0b3 100644 --- a/gcc/testsuite/g++.old-deja/g++.other/using5.C +++ b/gcc/testsuite/g++.old-deja/g++.other/using5.C @@ -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 index 31aa7cd560d..00000000000 --- a/gcc/testsuite/g++.old-deja/g++.other/using6.C +++ /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(); -}; |