1// Build don't run:
2// Special g++ Options: -fno-implement-inlines
3struct type {
4  virtual void m1();
5  virtual void m2() { }
6};
7
8void type::m1() { }
9
10int main() {
11  type t;
12}
13