forked from OSchip/llvm-project
parent
a94f9ffd0e
commit
e98b480b2e
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue