Fix final linking errors
[oota-llvm.git] / test / C++Frontend / 2003-06-08-VirtualFunctions.cpp
1
2
3 struct foo {
4   int y;
5   foo();
6   virtual int T() = 0;
7 };
8
9 struct bar : public foo {
10   bar();
11   int T() {}
12 };
13
14 foo::foo() : y(4) { }
15 bar::bar() { }
16 int main() { return 0; }