Home | History | Annotate | Download | only in over.over

Lines Matching full:template

7   template <class T> T* f(int);	// #1 
8 template <class T, class U> T& f(U); // #2
14 template <class T>
16 template <class T, class U>
28 template<class T> void oneT() { }
32 template<class T> void twoT() { } // expected-note 2 {{possible target for call}}
33 template<class T> void twoT(T) { } // expected-note 2 {{possible target for call}}
43 // check the template function case
44 template<class T> void check()
55 template<typename T>
57 template<typename T, typename U>
67 template<class T>
70 template<class T>
73 template<class T> void cant_resolve(T) { }//expected-note 3{{candidate}}
128 template <typename T> bool f(T) { return false; } // expected-note 4 {{possible target for call}}
129 template <typename T> static bool g(T) { return false; }
131 template <typename T> bool h(T) { return false; } // expected-note 3 {{possible target for call}}
132 template <int N> static bool h(int) { return false; } // expected-note 3 {{possible target for call}}