Files
openide/java/java-tests/testData/refactoring/extractMethodAndDuplicatesInplace/KeepVarKeyword.java
Alexandr Suhinin 656b22fd2d [extract method] IDEA-269072 IDEA-188743: reuse 'declare var type' option from 'introduce variable' refactoring
GitOrigin-RevId: 7a8f7a9eba3c7277da7b54e30a03afbbf771f84e
2023-04-21 10:58:34 +00:00

7 lines
142 B
Java

class SomeClass {
public void test(String filePath) {
<selection>var s = "42";</selection>
System.out.println(s);
}
}