Lines Matching full:void
3 void operator "" _a(const char *);
8 void operator "" _b(const char *);
14 void operator "" _c(const char *); // expected-error {{must be in a namespace or global scope}}
16 static void operator "" _c(unsigned long long); // expected-error {{must be in a namespace or global scope}}
18 friend void operator "" _d(const char *);
23 void f() {
28 void operator "" _g(const char *);
31 template<char...> void operator "" _h() {}
33 template<> void operator "" _h<'a', 'b', 'c'>() {}
35 template void operator "" _h<'a', 'b', 'c', 'd'>();