[ERROR]
The '=0' qualifier is used to declare a pure virtual function. Following example shows an ill-formed declaration.
class A{ // class
public:
virtual void f(void)=2; // ill-formed pure virtual
// function declaration.
};
Correct the source.