PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / format5.C
blobe219f88109269ca0902c2321a9082d7c958d8254
1 // PR c++/38980
2 // { dg-options "-Wformat" }
4 extern "C"
5 int printf(const char *format, ...) __attribute__((format(printf, 1, 2) ));
7 const char fmt1[] = "Hello, %s";
9 void f()
11   printf(fmt1, 3); // { dg-warning "expects argument" }