vtable1.C   [plain text]


// Build don't run:
// Special g++ Options: -fno-implement-inlines 
struct type {
  virtual void m1();
  virtual void m2() { }
};

void type::m1() { }

int main() {
  type t;
}