blob: 5432bb9513d37be36cabc427fb0ea34d4438e504 [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 new In<caret>Out() {
@Override
public void run() throws IOException {
foo();
}
};
}
}
}