blob: 50049219130632a6d95c24e9bf333ed0266dc96d [file] [log] [blame]
// "Replace with lambda" "true"
class Test {
interface InOut {
void run() throws IOException;
static void foo(){}
}
InOut bind() {
return () -> InOut.foo();
}
}