Files
openide/java/java-tests/testData/refactoring/introduceFunctionalParameter/beforeExceptionPreventFromCompatibility.java
T

15 lines
220 B
Java

class Test {
@FunctionalInterface
interface I {
void f() throws Exception;
}
void bar() {
foo();
}
void foo() {
<selection>System.out.println("");
System.out.println("");</selection>
}
}