Lines Matching defs:Ctor
108 class Ctor { // expected-note{{not complete until the closing '}'}}
109 Ctor(f)(int); // ok
110 Ctor(g(int)); // ok
111 Ctor(x[5]); // expected-error{{incomplete type}}
113 Ctor(UnknownType *); // expected-error{{unknown type name 'UnknownType'}}
117 Ctor::Ctor (x) = { 0 }; // \
118 // expected-error{{qualified reference to 'Ctor' is a constructor name}}
120 Ctor::Ctor(UnknownType *) {} // \
122 void Ctor::operator+(UnknownType*) {} // \