Searched refs:glambda (Results 1 – 3 of 3) sorted by relevance
50 auto glambda = [](auto a, auto&& b) ->bool { return a < b; }; in __anonad8db0ae0602() variable51 bool b = glambda(3, 3.14); // OK
143 auto glambda = [](auto a) { return a; }; in test() local144 glambda(1); in test()145 f1(glambda); // OK in test()146 f2(glambda); // expected-error{{no matching function}} in test()147 g(glambda); // expected-error{{call to 'g' is ambiguous}} in test()148 h(glambda); // OK: calls #3 since it is convertible from ID in test()
5 auto glambda = [](auto a) { return a; };12 glambda(1);