aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/complit10.C
blob: 7f159f0f707ab0f012a8c792c3e5c788866284ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 };
}