Files
openide/java/java-tests/testData/refactoring/extractMethodAndDuplicatesInplace/ExtractStaticToInterfaceJava8.java
Alexandr Suhinin a580c212c5 [extract method] IDEA-315575: test extract to interface
GitOrigin-RevId: b6a0879ba137c4a375c2b3258d7afc9217d4d153
2023-03-17 10:21:07 +00:00

8 lines
132 B
Java

interface Test {
class Nested {
void test(){
<selection>System.out.println();</selection>
}
}
}