Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantCast/beforePrecedencePerc2.java
T
2019-08-22 01:50:10 +03:00

8 lines
140 B
Java

// "Remove redundant cast(s)" "true"
class Test {
{
int i = 1;
int j = 2;
System.out.println(j * ((i<caret>nt)(i % j)));
}
}