From: Robert Lipe Date: Sun, 31 May 1998 21:06:44 +0000 (+0000) Subject: Martin says: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=33ae31b16a38061e57755d93673d807d5893339d;p=gcc.git Martin says: AFAIK, g++ does not support array initialization (anymore?). From-SVN: r20155 --- diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb58.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb58.C index 62e84ab8aa3..0691d553c9f 100644 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb58.C +++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb58.C @@ -10,5 +10,5 @@ private: main() { - A *list = new A[10](4); + A *list = new A[10](4); //ERROR - }