From: Jason Merrill Date: Fri, 26 Sep 1997 15:39:41 +0000 (-0400) Subject: never mind X-Git-Tag: releases/egcs-1.0.0~461 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2b9a5c49da4e6adc0e6a862bb4c74d4502657e3;p=thirdparty%2Fgcc.git never mind From-SVN: r15731 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/syntax1.C b/gcc/testsuite/g++.old-deja/g++.pt/syntax1.C deleted file mode 100644 index 4070885fdc1c..000000000000 --- a/gcc/testsuite/g++.old-deja/g++.pt/syntax1.C +++ /dev/null @@ -1,20 +0,0 @@ -// Build don't link: - -struct X { - enum { - a = 0, - n = 0 - }; -}; - -template -struct Y { - - enum { - a = T1::a + T2::a, - - n = meta_max::max // Crash here. - }; -}; - -int z = Y::a;