blob: 0bdaaee1772452d86665f6990c56e88fcd490fe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// PR c++/13070
// { dg-do compile }
// { dg-options "-Wformat" }
extern "C" int printf (const char*, ...);
int main()
{
printf("%d\n", 1, 1); // { dg-warning "too many" "printf warning" }
return 0;
}
|