#include <iostream>

struct A
{
	virtual ~A() final = default;
};

struct B : A
{
};

int main()
{
	(B());
}