New test case.
From-SVN: r29493
This commit is contained in:
parent
f3310c0da3
commit
e9013db204
18
gcc/testsuite/g++.old-deja/g++.martin/pmf1.C
Normal file
18
gcc/testsuite/g++.old-deja/g++.martin/pmf1.C
Normal 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)();
|
||||
}
|
Loading…
Reference in New Issue
Block a user