diff --git a/tests/Basic/Basic.h b/tests/Basic/Basic.h index e9e73af9..2fe34d12 100644 --- a/tests/Basic/Basic.h +++ b/tests/Basic/Basic.h @@ -172,13 +172,15 @@ struct DLL_API DefaultParameters template class Base { - // methods within Base can use template to access members of Derived - Derived* create() { return new Derived(); } + // methods within Base can use template to access members of Derived + Derived* create() { return new Derived(); } }; + class Derived : public Base { }; +// Tests the MoveFunctionToClassPass class DLL_API basic {