blob: 56efbd43bdc579ebde43af9d8d3b9c89f7392078 (
plain)
1
2
3
4
5
6
7
8
9
|
/* Test __STDC_VERSION__ for C11 with GNU extensions. Test -std=gnu11. */
/* { dg-do compile } */
/* { dg-options "-std=gnu11 -pedantic-errors" } */
#if __STDC_VERSION__ == 201112L
int i;
#else
#error "Bad __STDC_VERSION__."
#endif
|