Files
openide/java/java-tests/testData/refactoring/extractMethod/Method2Interface.java

5 lines
107 B
Java

interface I {
default void foo () {
<selection>System.out.println("hello");</selection>
}
}