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

15 lines
254 B
Java

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