blob: 30326a4799adc1771cd98060b3e118f206eab3c4 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Wattributes" } */
/* Make sure #pragma can enable a warning as an error. */
#pragma GCC diagnostic error "-Waddress"
void __attribute__((dj)) bar() { } /* { dg-warning "warning: .* attribute directive ignored" } */
int i;
void
foo ()
{
if (&i) /* { dg-error "error: .* will always evaluate as 'true'" } */
grill ();
}