Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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
))
)
{}