Add new test to verify that the array index, limit, and stride are
[official-gcc.git] / gcc / testsuite / gcc.dg / c1x-noreturn-4.c
blob72dceafba192d3ca1e3662881a33aec3947a8cf9
1 /* Test C1X _Noreturn. Test _Noreturn on main, freestanding. */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c1x -pedantic-errors -ffreestanding" } */
5 _Noreturn void exit (int);
7 _Noreturn int
8 main (void)
10 exit (0);