author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 30719 | 91834c070ba5 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 5011073 * @summary javac should implement JLS3 three-pass overload resolution * @author gafter * * @compile/fail/ref=T5011073.out -XDrawDiagnostics T5011073.java */ import java.util.*; class T5011073 { static void f(Set<String> s, Class<String> c) {} static void g(Set<Integer> s, Class c) { f(s, c); } }