blob: 0526753c4b73385d94f46bc965321ef759e29e53 [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(DeeBee.this.run(c)).run(c);
}
};
}
}