Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
g++.dg
/
warn
/
Wunused-11.C
blob: 4a151d24547e3196f2a6364ebe4670d9aca5d4e2 [
file
] [
log
] [
blame
]
// PR c++/20212
// { dg-options "-O2 -Wunused -Wextra" }
template
<int>
void
f
(
int
);
void
g
(
int
i
)
{
f
<
0
>(
i
);
}
template
<int>
void
f
(
int
i __attribute__
((
unused
))
)
{}