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