diff --git a/tests/dotnet/Common/Common.h b/tests/dotnet/Common/Common.h index 56e9c33e..2bb28256 100644 --- a/tests/dotnet/Common/Common.h +++ b/tests/dotnet/Common/Common.h @@ -790,13 +790,13 @@ public: virtual ~PureDtor() = 0; }; -class PureImplementedDtor +class VirtualImplementedDtor { public: - virtual ~PureImplementedDtor() = 0; + virtual ~VirtualImplementedDtor(); }; -PureImplementedDtor::~PureImplementedDtor() +inline VirtualImplementedDtor::~VirtualImplementedDtor() { }