blob: 234ad18a837f59ccdad36abee9a6109a17db49df [file] [log] [blame]
// "Replace with lambda" "true"
class Test {
interface InOut {
void run() throws IOException;
default void foo(){}
}
interface InOutEx extends InOut {
InOut bind() {
return () -> foo();
}
}
}