// File: bad3.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 Y ; DMC X = DMC(Y) ; cout << "\n\nExiting main()\n" ; }