Home | History | Annotate | Download | only in Parser

Lines Matching defs:Ctor

73   class Ctor { // expected-note{{not complete until the closing '}'}}
74 Ctor(f)(int); // ok
75 Ctor(g(int)); // ok
76 Ctor(x[5]); // expected-error{{incomplete type}}
78 Ctor(UnknownType *); // expected-error{{unknown type name 'UnknownType'}}
82 Ctor::Ctor (x) = { 0 }; // \
83 // expected-error{{qualified reference to 'Ctor' is a constructor name}}
85 Ctor::Ctor(UnknownType *) {} // \
87 void Ctor::operator+(UnknownType*) {} // \