MethodReference46.java 942 字节
Newer Older
1
/*
2
 * @test /nodynamiccopyright/
M
mcimadamore 已提交
3 4 5
 * @bug 8003280
 * @summary Add lambda tests
 *  check that generic method reference is inferred when type parameters are omitted
6
 * @compile/fail/ref=MethodReference46.out -XDrawDiagnostics MethodReference46.java
M
mcimadamore 已提交
7
 */
8

M
mcimadamore 已提交
9
public class MethodReference46 {
10

M
mcimadamore 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    interface SAM1 {
       void m(String s);
    }

    interface SAM2 {
       void m(Integer s);
    }

    interface SAM3 {
       void m(Object o);
    }

    static class Foo<X extends Number> {
        Foo(X x) { }
    }

    static <X extends Number> void m(X fx) { }

29 30 31 32 33 34 35 36 37
    static void g1(SAM1 s) { }

    static void g2(SAM2 s) { }

    static void g3(SAM3 s) { }

    static void g4(SAM1 s) { }
    static void g4(SAM2 s) { }
    static void g4(SAM3 s) { }
38

M
mcimadamore 已提交
39
    public static void main(String[] args) {
40 41 42 43
        g1(MethodReference46::m);
        g2(MethodReference46::m);
        g3(MethodReference46::m);
        g4(MethodReference46::m);
M
mcimadamore 已提交
44
    }
45
}