blob: 174e514403860a4916b377986821829a37a728b6 [file] [log] [blame]
struct foo {
int y;
foo();
virtual int T() = 0;
};
struct bar : public foo {
bar();
int T() {}
};
foo::foo() : y(4) { }
bar::bar() { }
int main() { return 0; }