From: Alexandre Oliva Date: Fri, 9 Oct 1998 09:48:27 +0000 (+0000) Subject: expr6.C: New test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f9fad1f531a1d63bd59327be6ce1b064f335dbde;p=gcc.git expr6.C: New test. * g++.old-deja/g++.pt/expr6.C: New test. operator?: breaks matching of template brackets. (forgot to cvs add it yesterday) From-SVN: r22956 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/expr6.C b/gcc/testsuite/g++.old-deja/g++.pt/expr6.C new file mode 100644 index 00000000000..e1d38de7e56 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/expr6.C @@ -0,0 +1,9 @@ +// Build don't link: + +// Based on a bug report by tveldhui + +// excess errors test - XFAIL *-*-* + +template class foo {}; + +foo< true ? 1 : 0 > bar;