summaryrefslogtreecommitdiffstats
path: root/test/input/Class-template-constructor-template.cxx
blob: 1ca5d93d3a23ce65181bfa1a9c2d02b0d6cfee96 (plain)
1
2
3
4
5
6
template <typename T> class start {
public:
  start(start const&);
  template <typename U> start(start<U> const&);
};
start<int> instantiate_and_copy(start<int> const& x) { return x; }