Files
openide/java/java-tests/testData/refactoring/inlineLocal/NoCastAroundLambda.java.after

12 lines
116 B
Plaintext

class Test {
void test() {
a(System::exit);
}
void a(I b) {}
interface I {
void i(int i);
}
}