Searched refs:TemplateCtors (Results 1 – 1 of 1) sorted by relevance
90 struct TemplateCtors { struct91 constexpr TemplateCtors() {} in TemplateCtors() argument92 template<template<int> class T> TemplateCtors(X<0>, T<0>);93 template<int N> TemplateCtors(X<1>, X<N>);94 template<typename T> TemplateCtors(X<2>, T);96 …template<typename T = int> TemplateCtors(int, int = 0, int = 0); // expected-note {{inherited from…99 struct UsingTemplateCtors : TemplateCtors { // expected-note 2{{candidate is the implicit}}100 using TemplateCtors::TemplateCtors; // expected-note 4{{here}} expected-note {{candidate}}