view gcc/testsuite/gcc.dg/spellcheck-stdbool.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

/* { dg-options "-std=c99" } */
/* Missing <stdbool.h>.  */

bool b; /* { dg-error "unknown type name 'bool'" } */
/* { dg-message "'bool' is defined in header '<stdbool.h>'; did you forget to '#include <stdbool.h>'?" "" { target *-*-* } .-1 } */

int test_true (void)
{
  return true; /* { dg-error "'true' undeclared" } */
  /* { dg-message "'true' is defined in header '<stdbool.h>'; did you forget to '#include <stdbool.h>'?" "" { target *-*-* } .-1 } */
}

int test_false (void)
{
  return false; /* { dg-error "'false' undeclared" } */
  /* { dg-message "'false' is defined in header '<stdbool.h>'; did you forget to '#include <stdbool.h>'?" "" { target *-*-* } .-1 } */
}