Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/constantConditional/afterSimple.java
Tagir Valeev 04df6bad09 ConstantConditionalExpressionInspection: add cast if necessary when type changes
Fixes IDEA-194648 Simpler expression auto-fix results in different code
2018-06-29 15:37:46 +07:00

6 lines
80 B
Java

// "Simplify" "true"
class Test {
int test(int a, int b) {
return a;
}
}