class T{public: const T& operator=(const T& t) const{return *this;}};void main(){ const T t; T t1; t = t1;}