Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
format3.C
blob: 0bdaaee1772452d86665f6990c56e88fcd490fe5 [
file
] [
log
] [
blame
]
// 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
;
}