Testcase for PR520

llvm-svn: 20248
This commit is contained in:
Chris Lattner 2005-02-19 17:07:48 +00:00
parent a94f9ffd0e
commit e98b480b2e
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
// RUN: %llvmgxx -S %s -o /dev/null
struct Foo {
Foo();
virtual ~Foo();
};
struct Bar {
Bar();
virtual ~Bar();
virtual bool test(bool) const;
};
struct Baz : public Foo, public Bar {
Baz();
virtual ~Baz();
virtual bool test(bool) const;
};
bool Baz::test(bool) const {
return true;
}