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

12 lines
125 B
Plaintext

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