aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c2y-generic-3.c
blob: 09174fdb095da1d94b9ad881001af60c1e45d858 (plain)
1
2
3
4
5
6
7
8
9
/* Test C2Y _Generic features: VM types still not allowed.  */
/* { dg-do compile } */
/* { dg-options "-std=c2y -pedantic-errors" } */

void
f (int i)
{
  (void) _Generic (i, int : 1, int (*)[i] : 2); /* { dg-error "variable length" } */
}