Files
openide/java/java-tests/testData/refactoring/inlineMethod/MethodReferenceInsideMethodCall.java.after

10 lines
121 B
Plaintext

import java.util.function.Supplier;
class Foo {
void o(){
mm(() -> 1);
}
void mm(Supplier<Integer> r) {}
}