निम्नलिखित जावा कोड संकलित करने में विफल रहता है:
@FunctionalInterface
private interface BiConsumer<A, B> {
void accept(A a, B b);
}
private static void takeBiConsumer(BiConsumer<String, String> bc) { }
public static void main(String[] args) {
takeBiConsumer((String s1, String s2) -> new String("hi")); // OK
takeBiConsumer((String s1, String s2) -> "hi"); // Error
}
संकलक रिपोर्ट:
Error:(31, 58) java: incompatible types: bad return type in lambda expression
java.lang.String cannot be converted to void
अजीब बात यह है कि चिह्नित लाइन "ओके" ठीक संकलित करती है, लेकिन चिह्नित लाइन "त्रुटि" विफल हो जाती है। वे अनिवार्य रूप से समान लगते हैं।