aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/noncompile/pr71583.c
blob: 5045b88b6aff4734ff7b16c5a342c48fd2e4fda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* PR c/71583 */
/* { dg-do compile } */

void
f (int i)
{
  (int (*)[++i]) { int }; /* { dg-error "expected" } */
  (int (*)[++i]) { }; /* { dg-error "empty" } */
  (int (*)[++i]) { , }; /* { dg-error "expected" } */
  (int (*)[++i]) { f () }; /* { dg-error "too few" } */
}