blob: 705c1be482f979a4cb5d4908a5d112a54dc3793f (
plain)
1
2
3
4
5
6
|
// PR c++/31743
typedef int A[];
A* p = new A; // { dg-error "invalid use of array with unspecified bounds" }
A* q = new (A); // { dg-error "invalid use of array with unspecified bounds" }
|