2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / vtable1.C
blobfc07a9ea5b8d3d552813c9c891be4a886ef3ac82
1 // { dg-do link  }
2 // { dg-options "-fno-implement-inlines " }
3 struct type {
4   virtual void m1();
5   virtual void m2() { }
6 };
8 void type::m1() { }
10 int main() {
11   type t;