blob: 56efbd43bdc579ebde43af9d8d3b9c89f7392078 [file] [log] [blame]
/* 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