view gcc/testsuite/g++.dg/cpp2a/concepts-explicit-spec6.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
line wrap: on
line source

// { dg-do compile { target c++2a } }

template<typename T>
struct A {
    template<class T2> void f1(T, T2); // member template
    template<class T2> void f2(T, T2); // member template
};

template<>
template<class X1> void A<int>::f1(int, X1);

// Specialization with template-id
template<>
template<> void A<int>::f2<char>(int, char);

// Specialization with deduction
template<>
template<> void A<int>::f1(int, char);