Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/constantExpression/beforeCharQuote.java
Mikhail Pyltsin ab51e442f6 [java-inspections] IDEA-378586 Impossible to compute constant for '\''
GitOrigin-RevId: ba58288dab3e558c1a1fe4529e8abe4ef26482fa
2025-09-02 18:14:43 +00:00

12 lines
261 B
Java

// "Compute constant value of 'SINGLE_QUOTE'" "true-preview"
class ConstantCast {
public static final char SINGLE_QUOTE = '\'';
static void doSomething(Object o) {
}
public static void main(String[] args) {
doSomething(SINGLE_QUOTE<caret>);
}
}