|
Java example source code file (T7086601a.java)
The T7086601a.java Java example source code/** * @test /nodynamiccopyright/ * @bug 7086601 * @summary Error message bug: cause for method mismatch is 'null' * @compile/fail/ref=T7086601a.out -XDrawDiagnostics T7086601a.java */ class T7086601 { static <S> void m1(Iterable super S> s1, Iterable super S> s2) { } static void m1(Object o) {} static <S> void m2(Iterable super S> s1, Iterable super S> s2, Iterable super S> s3) { } static void m2(Object o) {} @SafeVarargs static <S> void m3(Iterable super S>... ss) { } static void m3(Object o) {} static void test1(Iterable<String> is, Iterable Other Java examples (source code examples)Here is a short list of links related to this Java T7086601a.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.