Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/constantExpression/beforeConstantCast.java
Bas Leijdekkers 0a60753921 Java: don't report casts of constants (IDEA-373869)
in "Constant expression can be evaluated" inspection

GitOrigin-RevId: aa1bac4aef1e306c5c9671b9cdf3aca638feb95b
2025-06-05 20:37:31 +00:00

10 lines
251 B
Java

// "Fix all 'Constant expression can be evaluated' problems in file" "false"
class ConstantCast {
static void doSomething(String param1, byte param2) {
}
public static void main(String[] args) {
doSomething(args[0], (byte)<caret> 0);
}
}