view gcc/testsuite/g++.dg/cpp1z/class-deduction31.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile { target c++17 } }

template <class T> struct A {
  A(T); // #1
  A(const A&); // #2
};

template <class T> A(T) -> A<T>;  // #3

A a (42); // uses #3 to deduce A<int> and initializes with #1
A b = a;  // uses #2 (not #3) to deduce A<int> and initializes with #2; #2 is more specialized

template <class T> A(A<T>) -> A<A<T>>;  // #4

A b2 = a;  // uses #4 to deduce A<A<int>> and initializes with #1; #4 is as specialized as #2

template <class,class> struct same;
template <class T> struct same<T,T> {};

same<decltype(a),A<int>> s1;
same<decltype(b),A<int>> s2;
same<decltype(b2),A<A<int>>> s3;