Files
openide/java/java-tests/testData/inspection/redundantCast/NestedCast.java
T

9 lines
372 B
Java

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) ((<warning descr="Casting 'ct1' to 'CastTest' is redundant">CastTest</warning>)ct1).clone();
}
}