1 /* { dg-do compile } */
2 /* { dg-options "-Waddress -Wattributes -Werror" } */
3 /* { dg-message "warnings being treated as errors" "" {target "*-*-*"} 0 } */
4 
5 /* Make sure -Werror turns warnings in to errors.  */
6 
7 void grill ();
bar()8 void __attribute__((dj)) bar() { }	/* { dg-error ".* attribute directive ignored" } */
9 
10 int i;
11 
12 void
foo()13 foo ()
14 {
15   if (&i)	/* { dg-error ".* will always evaluate as 'true'" } */
16     grill ();
17 }
18