blob: 84bbabbf665ee800116596b95a61a8a4f7e93cfc [file] [log] [blame]
class CastTest
{
public static void main (String[] args) throws CloneNotSupportedException
{
CastTest ct1 = new CastTest ();
// The cast of ct1 is obviously redundant (although the cast of the result is necessary)
CastTest ct2 = (CastTest) ((CastTest)ct1).clone();
}
}