Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching defs:Obj

51   struct Obj {};
53 struct Base { virtual const Obj *foo() = 0; };
54 struct Derived : Base { virtual Obj *foo() { return new Obj(); } };