Lines Matching full:operator
4 // CHECK: decltype(nullptr) operator "" _foo(const char *p, decltype(sizeof(int)));
5 auto operator"" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
7 // CHECK: decltype(""_foo) operator "" _bar(unsigned long long);
8 decltype(""_foo) operator"" _bar(unsigned long long);
10 // CHECK: decltype(42_bar) operator "" _baz(long double);
11 decltype(42_bar) operator"" _baz(long double);
13 // CHECK: decltype(4.5_baz) operator "" _baz(char);
14 decltype(4.5_baz) operator"" _baz(char);
16 // CHECK: const char *operator "" _quux(const char *);
17 const char *operator"" _quux(const char *);
19 // CHECK: template <char...> const char *operator "" _fritz();
20 template<char...> const char *operator"" _fritz();