Searched refs:TemplateCtors (Results 1 – 1 of 1) sorted by relevance
98 struct TemplateCtors { // expected-note 2{{candidate constructor (the implicit}} struct99 constexpr TemplateCtors() {} // expected-note {{candidate inherited constructor}} in TemplateCtors() argument100 …template<template<int> class T> TemplateCtors(X<0>, T<0>); // expected-note {{here}} expected-note…101 …template<int N> TemplateCtors(X<1>, X<N>); // expected-note {{here}} expected-note {{candidate inh…102 …template<typename T> TemplateCtors(X<2>, T); // expected-note {{here}} expected-note {{candidate i…104 template<typename T = int> TemplateCtors(int, int = 0, int = 0);107 struct UsingTemplateCtors : TemplateCtors { // expected-note 2{{candidate constructor (the implicit…108 using TemplateCtors::TemplateCtors; // expected-note 6{{inherited here}}