Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/constantExpression/beforeLiteral.java
Tagir Valeev 13cf92eb7f [java-inspections] ConstantExpressionInspection: minor fixes
1. Disable for literals
2. Checkbox description moved to the form

GitOrigin-RevId: 48303e0c704ef9db5e09f64f34d3ee32d2743194
2023-08-04 15:20:12 +00:00

7 lines
139 B
Java

// "Compute constant value of '""" ...'" "false"
class Literal {
void test() {
System.out.println("""
<caret>Hello""");
}
}