Lines Matching refs:matching
333 take_no_yes(consumes_first<id>); // expected-error {{no matching function}}
334 take_yes_yes(consumes_first<id>); // expected-error {{no matching function}}
339 take_yes_no(consumes_rest<id>); // expected-error {{no matching function}}
341 take_yes_yes(consumes_rest<id>); // expected-error {{no matching function}}
346 take_yes_no(consumes_two); // expected-error {{no matching function}}
347 take_no_yes(consumes_two); // expected-error {{no matching function}}
362 take_no_yes(consumes_first<2>::fn<id>); // expected-error {{no matching function}}
363 take_yes_yes(consumes_first<3>::fn<id>); // expected-error {{no matching function}}
365 take_no_yes(consumes_first<5>::fn); // expected-error {{no matching function}}
366 take_yes_yes(consumes_first<6>::fn); // expected-error {{no matching function}}
373 take_yes_no(consumes_rest<1>::fn<id>); // expected-error {{no matching function}}
375 take_yes_yes(consumes_rest<3>::fn<id>); // expected-error {{no matching function}}
376 take_yes_no(consumes_rest<4>::fn<id>); // expected-error {{no matching function}}
378 take_yes_yes(consumes_rest<6>::fn<id>); // expected-error {{no matching function}}
385 take_yes_no(consumes_two<1>::fn<id, id>); // expected-error {{no matching function}}
386 take_no_yes(consumes_two<2>::fn<id, id>); // expected-error {{no matching function}}
388 take_yes_no(consumes_two<1>::fn); // expected-error {{no matching function}}
389 take_no_yes(consumes_two<2>::fn); // expected-error {{no matching function}}
403 take_yes(non_produces1<id>); // expected-error {{no matching function}}
404 take_yes(non_produces2); // expected-error {{no matching function}}
416 take_no(produces3<id>); // expected-error {{no matching function}}
417 take_no(produces4); // expected-error {{no matching function}}
429 take_yes(non_produces<1>::fn<id>); // expected-error {{no matching function}}
430 take_yes(non_produces<2>::fn); // expected-error {{no matching function}}
441 take_no(produces<3>::fn<id>); // expected-error {{no matching function}}
442 take_no(produces<4>::fn); // expected-error {{no matching function}}
450 take((int) 0); // expected-error {{no matching function for call to 'take'}}