Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.ext
/
arrnew2.C
blob: fceb95e9ee57695a548a66cf130960120a312ba1 [
file
] [
log
] [
blame
]
// { dg-do compile }
// { dg-options "-w -fpermissive" }
int
*
foo
=
new
int
[
1
](
42
);
// { dg-error "parenthesized" "" { target c++17_down } }
int
main
()
{
return
foo
[
0
]
!=
42
;
}