Searched refs:lambda2 (Results 1 – 6 of 6) sorted by relevance
8 auto lambda2 = []{}; // expected-note 2{{candidate constructor}} in test_nonaggregate() local9 decltype(lambda2) bar = {}; // expected-error{{no matching constructor}} in test_nonaggregate()10 static_assert(!__is_literal(decltype(lambda2)), ""); in test_nonaggregate()
10 volatile const auto lambda2 = [](int x) { }; // expected-note{{but method is not marked volatile}} in test_conversion() local11 void (*fp4)(int) = lambda2; // expected-error{{no viable conversion}} in test_conversion()
13 decltype(lambda1) lambda2; // expected-error{{no matching constructor}} in test_special_member_functions() local
33 const auto& lambda2([=] { boom2.foo(); }); // expected-note{{in instantiation of member function}}34 void (^block)(void) = lambda2;
330 auto lambda2 = [&]() { in captureByReference() local337 lambda2(); in captureByReference()
202 auto lambda2 = [ i = G.i, c1 = G.c1, c2 = G.c2 ]{}; // no-warning in __anon01a9ac500402() variable