Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
spec34.C
blob: 6c28e57fb9ff2f143df58b64dbcaf90fb9bdda60 [
file
] [
log
] [
blame
]
// PR c++/26988
struct
B
{};
struct
Bar
:
virtual
B
{
template
<
typename
T
>
Bar
(
T
const
&
cast
);
};
template
<>
Bar
::
Bar
(
int
const
&
cast
)
{}