From: Mark Mitchell Date: Tue, 16 Nov 1999 03:41:13 +0000 (+0000) Subject: New test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff9655e94b9b1d3483abb43ae26e1393dc8829a1;p=gcc.git New test From-SVN: r30543 --- diff --git a/gcc/testsuite/g++.old-deja/g++.pt/enum13.C b/gcc/testsuite/g++.old-deja/g++.pt/enum13.C new file mode 100644 index 00000000000..f361c538b0a --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.pt/enum13.C @@ -0,0 +1,9 @@ +// Build don't link: +// Origin: Theodore Papadopoulo + +template +struct foo { + enum { A = 4 >= 4, B = (1 ? true : A) }; +}; + +foo bar;