#include using namespace std; class Test{ int *myArray; public: Test(){ myArray = new int[10]; } ~Test(){ de
Um, shouldn't the destructor be calling delete, rather than delete[]?