Commit 0c12c02a by Martin v. Löwis

New test case.

From-SVN: r31158
parent 1cb47a5c
// Build don't link:
class A
{
public:
virtual void f(void) = 0; // pure virtual function.
A() {f();} // ERROR - called in a constructor
~A() {f();} // ERROR - called in a destructor
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment