diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-08 13:18:08 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-11-08 13:18:08 +0000 |
commit | 49278702ccf462b71a7229405dfb6dbb6ffd060e (patch) | |
tree | 47feb179966867843cc373aa8c6209cc9b248aba | |
parent | f7bc085aa63acf13b75dfcd8ab69d5c48d8e945e (diff) | |
download | gcc-49278702ccf462b71a7229405dfb6dbb6ffd060e.tar.gz |
* g++.old-deja/g++.other/init16.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37318 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/init16.C | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b58a1c21048..304a3f07332 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2000-11-08 Jakub Jelinek <jakub@redhat.com> + + * g++.old-deja/g++.other/init16.C: New test. + 2000-11-06 Loren J. Rittle <ljrittle@acm.org> * g++.old-deja/g++.mike/p6610a.C: Update XFAIL. diff --git a/gcc/testsuite/g++.old-deja/g++.other/init16.C b/gcc/testsuite/g++.old-deja/g++.other/init16.C new file mode 100644 index 00000000000..8d7c1af3b10 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/init16.C @@ -0,0 +1,11 @@ +// Build don't link: +// Origin: Jakub Jelinek <jakub@redhat.com> + +// excess errors test - XFAIL *-*-* + +#include <string> + +struct foo { + string x; +}; +extern const struct foo y = { "foo" }; |