Searched refs:glambda (Results 1 – 2 of 2) sorted by relevance
50 auto glambda = [](auto a, auto&& b) ->bool { return a < b; }; in __anon7def28290602() variable51 bool b = glambda(3, 3.14); // OK
139 auto glambda = [](auto a) { return a; }; in test() local140 glambda(1); in test()141 f1(glambda); // OK in test()142 f2(glambda); // expected-error{{no matching function}} in test()143 g(glambda); // expected-error{{call to 'g' is ambiguous}} in test()144 h(glambda); // OK: calls #3 since it is convertible from ID in test()