[middle-end PATCH] Prefer PLUS over IOR in RTL expansion of multi-word shifts/rotates.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.ext / arrnew2.C
blobfceb95e9ee57695a548a66cf130960120a312ba1
1 // { dg-do compile }
2 // { dg-options "-w -fpermissive" }
4 int *foo = new int[1](42); // { dg-error "parenthesized" "" { target c++17_down } }
5 int main ()
7   return foo[0] != 42;