Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
format5.C
blob: e219f88109269ca0902c2321a9082d7c958d8254 [
file
] [
log
] [
blame
]
// PR c++/38980
// { dg-options "-Wformat" }
extern
"C"
int
printf
(
const
char
*
format
,
...)
__attribute__
((
format
(
printf
,
1
,
2
)
));
const
char
fmt1
[]
=
"Hello, %s"
;
void
f
()
{
printf
(
fmt1
,
3
);
// { dg-warning "expects argument" }
}