blob: 7449a3be34cff8f4e986cfaa69b096edf9886d98 [file] [log] [blame]
// "Replace with method reference" "false"
interface Foo<A, B> {
B f(A a);
}
interface DeeBee<A> {
A run(Void c) throws SQLException;
<B> DeeBee<B> bind(final Foo<A, DeeBee<B>> f) default {
return new Dee<caret>Bee<B> () {
public B run(final Void c) throws SQLException {
return f.f(null).run(c);
}
};
}
}