// File: bad2.cpp // // Testing where the destructor gets called. // Some things you are not supposed to do. #include #include "dmc.h" using namespace std ; int main() { cout << "\n\nEntering main()\n" ; DMC X, Y ; X = Y ; // Oops! cout << "\n\nExiting main()\n" ; }