1 // PR c++/38980
2 // { dg-options "-Wformat" }
3 
4 extern "C"
5 int printf(const char *format, ...) __attribute__((format(printf, 1, 2) ));
6 
7 const char fmt1[] = "Hello, %s";
8 
f()9 void f()
10 {
11   printf(fmt1, 3); // { dg-warning "expects argument" }
12 }
13