LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git] / gcc / testsuite / gcc.dg / Werror-7.c
blobce28cdc78b6ae3bf543f2a02b660ef7536dadbd1
1 /* { dg-do compile } */
2 /* { dg-options "-Waddress -Werror -Wno-error=address -Wattributes" } */
3 /* { dg-message "warnings being treated as errors" "" {target "*-*-*"} 0 } */
5 /* Make sure -Wno-error= overrides -Werror. */
7 void grill ();
8 void __attribute__((dj)) bar() { } /* { dg-error ".* attribute directive ignored" } */
10 int i;
12 void
13 foo ()
15 if (&i) /* { dg-warning ".* will always evaluate as 'true'" } */
16 grill ();