|
Java example source code file (LambdaConv25.java)
The LambdaConv25.java Java example source code/* * @test /nodynamiccopyright/ * @summary check that merged inherited descriptors preservers type-parameters * @compile/fail/ref=LambdaConv25.out -XDrawDiagnostics LambdaConv25.java */ class LambdaConv25 { interface A { <X> void m(); } interface B { <X> void m(); } interface C extends A, B { } void test() { C c = ()->{}; //should fail } } Other Java examples (source code examples)Here is a short list of links related to this Java LambdaConv25.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.