Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash95.C
blob: 47346111328218608e880747f73f85b1a39225f5 [
file
] [
log
] [
blame
]
// PR c++/43705
template
<
typename
>
struct
S
{
template
<
>
struct
S
<
int
>
// { dg-error "explicit|specialization|template|parameter" }
{
S
(
int
);
};
};
S
<
int
>
s
(
0
);
// { dg-error "no matching|too many initializers" }