blob: 3f75685e14a92bb5cf8d578888d8c0bd63d8b46d [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4941882 8078024
* @summary incorrect inference for result of lub(int[], float[])
* @compile/fail/ref=T4941882.out -XDrawDiagnostics T4941882.java
*/
public class T4941882 {
static <T> T f(T a, T b) {
return a;
}
static Object[] main(int[] a, float[] b) {
return f(a, b);
}
}