blob: 34c118cd993bf98e1926d56bfb3d19261d0bd683 [file] [log] [blame]
// "Replace with method reference" "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();
}
};
}
}