        trouble operator = (const trouble &i_trouble)
        {
            cout << "= operator called\n";
            data = i_trouble.data;
            return (*this);
        }
