xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/warn/format3.C (revision 4e43c760ad4cd5f644ec700462679d05749498d8)
1 // PR c++/13070
2 // { dg-do compile }
3 // { dg-options "-Wformat" }
4 
5 extern "C" int printf (const char*, ...);
6 
main()7 int main()
8 {
9   printf("%d\n", 1, 1);  // { dg-warning "too many" "printf warning" }
10   return 0;
11 }
12 
13