llvm-6502/test/C++Frontend/2003-06-08-BaseType.cpp
Chris Lattner 905e7344b6 Fix final linking errors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6707 91177308-0d34-0410-b5e6-96231b3b80d8
2003-06-16 12:27:12 +00:00

17 lines
143 B
C++

struct foo {
int y;
foo();
};
struct bar : public foo {
//int x;
bar();
};
bar::bar() { }
foo::foo() { }
int main() { return 0; }