blob: fc07a9ea5b8d3d552813c9c891be4a886ef3ac82 [file] [log] [blame]
// { dg-do link }
// { dg-options "-fno-implement-inlines " }
struct type {
virtual void m1();
virtual void m2() { }
};
void type::m1() { }
int main() {
type t;
}