Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr26672.c
blob: b13b5dcaef7a9c0ace8d586d9a31106186ebd9ce [
file
] [
log
] [
blame
]
/* { dg-do compile } */
int
printf
(
const
char
*
format
,
...);
extern
const
char
help_string
[];
void
app_opts
(
void
)
{
printf
(
"%s"
,
help_string
);
}
const
char
help_string
[]
=
"foo\n"
;