Important update: Arm Announces End of Life Timeline for Mbed. This site will be archived in July 2026. Read the full announcement.
Compiler Error 964
bad code
class class2 : public class1
{
public:
void ~class2();
};
konsructors and destructors don't have a return typ
good code
class class2 : public class1
{
public:
~class2();
};