Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
other
/
default11.C
blob: e747c44a11bbded23c4d102f2eafb336bfd8521e [
file
] [
log
] [
blame
]
// PR c++/65370
template
<typename>
class
C
{
template
<
typename
U
>
C
(
const
C
<
U
>&,
bool
=
false
);
};
template
<>
template
<
typename
U
>
C
<int>
::
C
(
const
C
<
U
>&,
bool
);