Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createLocalFromUsage/beforePreserveComment.java
Tagir Valeev 6266f14d9b [java-inspections] CreateLocalFromUsageFix: tests for preview
GitOrigin-RevId: 18145df666bfb6601725d6cdd13a14bb341fe32a
2022-07-27 10:00:37 +00:00

11 lines
198 B
Java

// "Create local variable 'zeit'" "true-preview"
public class A {
void foo() {
String[] split = null;
ze<caret>it//c1
= split//c2
[1]; // 2011-04-13
}
}