summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wno-attribute-warning.c
blob: 2475304757488141ebf78567b0886262e3432aff (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
/* { dg-options "-Werror -Wno-error=attribute-warning" } */

int f1(void) __attribute__ ((warning("Please avoid f1")));
int func1(void)
{
  return f1(); /* { dg-warning "'f1' declared with attribute warning: Please avoid f1" } */
}