Run virtual_derivation testcase

Should have been added in c92d8c7cf7
This commit is contained in:
William S Fulton 2017-10-04 08:49:45 +01:00
parent 1a0ce21547
commit bb7db846cc
2 changed files with 2 additions and 0 deletions

View File

@ -536,6 +536,7 @@ CPP_TEST_CASES += \
varargs_overload \
variable_replacement \
virtual_destructor \
virtual_derivation \
virtual_poly \
virtual_vs_nonvirtual_base \
voidtest \

View File

@ -58,6 +58,7 @@
class IndexReader{
public:
virtual void norms() = 0;
virtual ~IndexReader() {}
};
class MultiReader : public IndexReader {