PR lto/84212 - -Wno-* does not disable warnings from -flto link stage
[official-gcc.git] / gcc / testsuite / g++.dg / warn / format3.C
blob0bdaaee1772452d86665f6990c56e88fcd490fe5
1 // PR c++/13070
2 // { dg-do compile }
3 // { dg-options "-Wformat" }
5 extern "C" int printf (const char*, ...);
7 int main()
9   printf("%d\n", 1, 1);  // { dg-warning "too many" "printf warning" }
10   return 0;