Lines Matching refs:cls
6 template<> struct cls<int> {
15 template<typename T> struct cls<T*> {
24 template<> void cls<void>::nested_fn() {}
25 template<> struct cls<void>::nested_cls {};
26 template<> int cls<void>::nested_var;
27 template<> enum class cls<void>::nested_enum { e };
28 template<> template<typename U> void cls<void>::nested_fn_t() {}
29 template<> template<typename U> struct cls<void>::nested_cls_t {};
30 template<> template<typename U> int cls<void>::nested_var_t;
35 cls<char>();
37 cls<char*>();
39 cls<void>::nested_fn_t<char>();
40 cls<void>::nested_cls_t<char>();
41 (void)cls<void>::nested_var_t<char>;