From: Vladimir Grigoriev on
As I remember the following quetstion about C-type casting was already
asked. I.e.

the expression

int i;

( int )i = 10;

is invalid.

My question is relative to classes. Which type of object is generated? I.e.
with const or without const specifier?

T obj1, obj2;

( T )obj1 = obj2;

Vladimir Grigoriev