Lines Matching defs:any
32 // expected-error{{conversion function cannot have any parameters}}
34 operator bool(int a = 4, int b = 6) const; // expected-error{{conversion function cannot have any parameters}}
206 // expected-error-re@-2 {{cannot specify any part of a return type in the declaration of a conversion function{{$}}}}
208 // expected-error-re@-4 {{cannot specify any part of a return type in the declaration of a conversion function; use an alias template to declare a conversion to 'T (&)()'{{$}}}}
254 Any any = Other();
468 const operator int(); // expected-error {{cannot specify any part of a return type in the declaration of a conversion function; put the complete type after 'operator'}}
469 const operator int() const; // expected-error {{cannot specify any part of a return type}}
470 volatile const operator int(); // expected-error {{cannot specify any part of a return type}}
500 *operator int(); // expected-error {{cannot specify any part of a return type in the declaration of a conversion function; put the complete type after 'operator'}}
501 **operator char(); // expected-error {{cannot specify any part of a return type in the declaration of a conversion function; put the complete type after 'operator'}}