view gcc/testsuite/c-c++-common/fmax-errors.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* PR c/44782 */
/* { dg-do compile } */
/* { dg-options "-fmax-errors=3 -Wall" } */

void foo (unsigned int i, unsigned int j)
{
  (i) ();			/* { dg-error "" } */
  (j) ();			/* { dg-error "" } */

  i + j; /* { dg-warning "" }  */

  (k) ();			/* { dg-error "" } */
  /* Make sure we see the notes related to the final error we emit.  */
  /* { dg-message "identifier" "" { target c } .-2 } */

  /* Warnings after the final error should not appear.  */
  i + j; /* no warning.  */

  (i*j) ();			/* no error here due to -fmax-errors */

} /* { dg-prune-output "compilation terminated" } */