Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
spec18.C
blob: a22e8543d0e784c7959bc07d3768635990b0b5c1 [
file
] [
log
] [
blame
]
// PR c++/17936
template
<
int
,
int
N
>
struct
A
{
void
foo
();
};
template
<
int
N
>
struct
A
<
1
,
N
>
{
void
foo
();
};
template
<>
void
A
<
1
,
2
>::
foo
();