To validate the statement "compiler & linker enforce existence of function body for pure virtual destructor." from this geeksforgeeks article, I compiled this code:
class Base
{
public:
virtual ~Base()=0; // Pure virtual destructor
};
class Derived : public Base
{
public:
~Derived()
{
std::cout << "~Derived() is executed";
}
};
int main()
{
//Derived d; <<<
return 0;
}
which compiled without any error. So why the compiler didn't chose to enforce the existence of the function body in this case?
Because the compiler (the entire translation process, actually) doesn't have to enforce anything if you perform an ODR1 violation. According to the C++ standard at [basic.def.odr/4]:
The compiler is perfectly within its right to figure out your program isn't actually using2 the destructor of
Derived
(and therefore the destructor ofBase
), and just not bother with notifying you.1 One Definition Rule
2 What does it mean to “ODR-use” something?