aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/default11.C
blob: e747c44a11bbded23c4d102f2eafb336bfd8521e (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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);