Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching defs:Base

54 struct Base;
57 operator Base&() { exit(1); }
62 struct Base : Root {
63 Base(const Base&) { printf("Base::(const Base&)\n"); }
64 Base() { printf("Base::Base()\n"); }
68 struct Derived : Base {
71 void foo(Base) {}