File: IgnoreLambdaBodyDuringResolutionTest1.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 (31 lines) | stat: -rw-r--r-- 596 bytes parent folder | download | duplicates (18)
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
31
/*
 * @test /nodynamiccopyright/
 * @bug 8033483
 * @summary Should ignore nested lambda bodies during overload resolution
 * @compile/fail/ref=IgnoreLambdaBodyDuringResolutionTest1.out -XDrawDiagnostics IgnoreLambdaBodyDuringResolutionTest1.java
 */

class IgnoreLambdaBodyDuringResolutionTest1 {
    interface SAM<T> {
        T action(T t);
    }

    <T> T m(SAM<T> op) {
        return null;
    }

    class B {
        B x() {
            return this;
        }
    }

    class C {}

    void foo(B arg) {}
    void foo(C arg) {}

    void bar() {
        foo(m(arg -> new B()));
    }
}