Home | History | Annotate | Download | only in class.inhctor

Lines Matching full:template

3 template<int> struct X {};
6 // - the template parameter list
92 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 here}}
106 template<int = 0> constexpr UsingTemplateCtors(int) {} // expected-note {{candidate}}
107 template<typename T = void> constexpr UsingTemplateCtors(int, int) {}
108 template<typename T, typename U> constexpr UsingTemplateCtors(int, int, int) {}
111 template<int> struct Y {};