blob: 0a91eea1bd34297fa1674ce374a857586672d820 [file] [log] [blame]
// "Replace with lambda" "false"
class Test {
interface InOut {
void run() throws IOException;
default void foo(){}
}
InOut bind() {
return new In<caret>Out() {
@Override
public void run() throws IOException {
foo();
}
};
}
}