blob: 7f159f0f707ab0f012a8c792c3e5c788866284ac [file] [log] [blame]
// PR c++/36023
// { dg-do compile }
// { dg-options "" }
struct A;
void
f1 (int i)
{
(int[i]) { 1 }; // { dg-error "variable-sized compound literal" }
(A[5]) { 1 }; // { dg-error "have incomplete type" }
(A[i]) { 1 }; // { dg-error "have incomplete type" }
}
void
f2 ()
{
(int[]) { 1 };
(int[1]) { 1 };
}