Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:decltype

3 // CHECK: auto operator "" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
4 auto operator"" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
6 // CHECK: decltype(""_foo) operator "" _bar(unsigned long long);
7 decltype(""_foo) operator"" _bar(unsigned long long);
9 // CHECK: decltype(42_bar) operator "" _baz(long double);
10 decltype(42_bar) operator"" _baz(long double);
12 // CHECK: decltype(4.5_baz) operator "" _baz(char);
13 decltype(4.5_baz) operator"" _baz(char);