]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/Wno-attribute-warning.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / Wno-attribute-warning.c
CommitLineData
e217792b
NM
1/* { dg-do compile } */
2/* { dg-options "-Werror -Wno-error=attribute-warning" } */
3
4int f1(void) __attribute__ ((warning("Please avoid f1")));
5int func1(void)
6{
7 return f1(); /* { dg-warning "'f1' declared with attribute warning: Please avoid f1" } */
8}