blob: a92a1140f676c0edd846d0e5da44a9c8bf29cb1b [file] [log] [blame]
/* Test C11 _Noreturn. Test _Noreturn on main, freestanding. */
/* { dg-do compile } */
/* { dg-options "-std=c11 -pedantic-errors -ffreestanding" } */
_Noreturn void exit (int);
_Noreturn int
main (void)
{
exit (0);
}