OSDN Git Service

Merge in xfails from PR14107.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.mike / vtable1.C
1 // { dg-do link  }
2 // { dg-options "-fno-implement-inlines " }
3 struct type {
4   virtual void m1();
5   virtual void m2() { }
6 };
7
8 void type::m1() { }
9
10 int main() {
11   type t;
12 }