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