New test case.

From-SVN: r29493
This commit is contained in:
Martin v. Löwis 1999-09-18 10:45:56 +00:00
parent f3310c0da3
commit e9013db204
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
// Based on a test case by Andrew Bell <andrew.bell@bigfoot.com>
// Check for pointer-to-virtual-function calls on
// bases without virtual functions.
struct B{};
struct D:B{
virtual void foo();
};
void D::foo(){}
int main()
{
B *b = new D;
void (B::*f)() = static_cast<void (B::*)()>(&D::foo);
(b->*f)();
}