From: Jakub Jelinek Date: Wed, 8 Nov 2000 13:18:08 +0000 (+0100) Subject: * g++.old-deja/g++.other/init16.C: New test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=321565d3fa2c8a29713c168309ce63d1ff53677b;p=gcc.git * g++.old-deja/g++.other/init16.C: New test. From-SVN: r37318 --- 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 + + * g++.old-deja/g++.other/init16.C: New test. + 2000-11-06 Loren J. Rittle * 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 + +// excess errors test - XFAIL *-*-* + +#include + +struct foo { + string x; +}; +extern const struct foo y = { "foo" };