Files
2025-09-02 18:14:43 +00:00

12 lines
246 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('\'');
}
}