Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/constantExpression/beforeDfaClass.java
T
2023-07-28 09:45:29 +00:00

8 lines
146 B
Java

// "Compute constant value of 'x1'" "true-preview"
class Test {
void test() {
var x1 = Test.class;
System.out.println(x<caret>1);
}
}