blob: 9ab7936d1ed3db6235ecebe80454593d41d25af2 [file] [log] [blame]
/* Test __STDC_VERSION__ for C11. Test -std=c11. */
/* { dg-do compile } */
/* { dg-options "-std=c11 -pedantic-errors" } */
#if __STDC_VERSION__ == 201112L
int i;
#else
#error "Bad __STDC_VERSION__."
#endif