(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
ext/
vla5.C
// PR c++/37417
// Testcase by Martin Michlmayr <tbm@cyrius.com>
// { dg-do compile }
// { dg-options "-O" }

void
test (int a)
{
  new (char[a]); // { dg-warning "parentheses" }
}