blob: 2145f97429737e53fd618ac90bdd13f54717fac7 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Test __STDC_VERSION__ for C23. Test -std=c23. */
/* { dg-do compile } */
/* { dg-options "-std=c23 -pedantic-errors" } */
#if __STDC_VERSION__ == 202311L
int i;
#else
#error "Bad __STDC_VERSION__."
#endif
|