Lines Matching +full:0 +full:xb
25 struct XB { struct
26 XB(const B&);
27 XB(const optional<B>&);
29 struct YB : XB {
30 using XB::XB;
56 int x = S{}.f(0); in main()
57 int y = S{}.g(0); in main()
65 (void)b<int, int>(0, 0, d); // expected-error {{no matching function for call to 'b'}} in d()
66 (void)b<int, int>(0, d, 0); // expected-error {{no matching function for call to 'b'}} in d()
67 (void)b<int, int>(d, 0, 0); // expected-error {{no matching function for call to 'b'}} in d()
68 return 0; in d()