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