File: TargetType14.java

package info (click to toggle)
libnb-javaparser-java 9%2B2018-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 65,320 kB
  • sloc: java: 440,096; xml: 6,359; sh: 865; makefile: 314
file content (25 lines) | stat: -rw-r--r-- 656 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * @test /nodynamiccopyright/
 * @bug 8003280
 * @summary Add lambda tests
 *  check that return type is inferred from target type when cyclic inference found
 * @author  Maurizio Cimadamore
 * @compile/fail/ref=TargetType14.out -XDrawDiagnostics TargetType14.java
 */

class TargetType14 {

    interface SAM<X> {
        X m(int i, int j);
    }

    static void test() {
        SAM<Integer> s1 = (i, j) -> i + j;
        m((i, j) -> i + j);
        SAM<Integer> s2 = m2((i, j) -> i + j); //ok
        SAM<Integer> s3 = m2((i, j) -> "" + i + j); //no
    }

    static void m(SAM<Integer> s) { }
    static <X> SAM<X> m2(SAM<X> s) { return null; }
}