Home | History | Annotate | Download | only in temp.param

Lines Matching full:template

6 // declared with class or typename) or template-name (if declared with
7 // template) in the scope of the template declaration.
8 template<typename T> struct X0 {
12 template<template<class T> class Y> struct X1 {
16 // [Note: because of the name lookup rules, a template-parameter that
17 // could be interpreted as either a non-type template-parameter or a
27 template<class T, T i> struct X2 {
30 T t1 = i; //template-parameters T and i
43 template <typename S> void foo();
44 template <int S> void bar();
45 template <template<typename> class S> void baz();