aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/gnu23-version-1.c
blob: 649f13b54ec5986a6235be468347900fc0512e53 (plain)
1
2
3
4
5
6
7
8
9
/* Test __STDC_VERSION__ for C23 with GNU extensions.  Test -std=gnu23.  */
/* { dg-do compile } */
/* { dg-options "-std=gnu23 -pedantic-errors" } */

#if __STDC_VERSION__ == 202311L
int i;
#else
#error "Bad __STDC_VERSION__."
#endif