File: MostSpecific06.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 (30 lines) | stat: -rw-r--r-- 716 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
26
27
28
29
30
/*
 * @test /nodynamiccopyright/
 * @bug 8003280
 * @summary Add lambda tests
 *  most specific resolution crashes on stuck lambdas
 * @compile/fail/ref=MostSpecific06.out -XDrawDiagnostics MostSpecific06.java
 */
import java.util.*;

class MostSpecific06 {

    interface Predicate<X> {
        boolean accept(X x);
    }

    interface ExtPredicate<X> extends Predicate<X> { }



    void test(boolean cond, ArrayList<String> als) {
        m(u -> true, als, als);
        m((u -> true), als, als);
        m(cond ? u -> true : u -> false, als, als);
    }

    <U> U m(Predicate<U> p, List<U> lu, ArrayList<U> au) { return null; }


    <U> U m(ExtPredicate<U> ep, ArrayList<U> au, List<U> lu) { return null; }
}