aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp2a/new-array4.C
blob: 2c327ebc853ddb0a468808873b17f4acdf912ca7 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/93529
// P1009: Array size deduction in new-expressions
// { dg-do compile { target c++11 } }

void
fn ()
{
  new int[][3]{ { 1, 2, 3 } };
  new int[][]{ { 1, 2, 3 } }; // { dg-error "expected primary-expression" }
}