test/tools/javac/lambda/MethodReference69.java

Wed, 13 Aug 2014 14:50:00 -0700

author
katleman
date
Wed, 13 Aug 2014 14:50:00 -0700
changeset 2549
0b6cc4ea670f
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u40-b01 for changeset bf89a471779d

aoqi@0 1 /*
aoqi@0 2 * @test /nodynamiccopyright/
aoqi@0 3 * @bug 8016175
aoqi@0 4 * @summary Add bottom-up type-checking support for unambiguous method references
aoqi@0 5 * @compile/fail/ref=MethodReference69.out -XDrawDiagnostics MethodReference69.java
aoqi@0 6 */
aoqi@0 7 class MethodReference69 {
aoqi@0 8 interface F<X> {
aoqi@0 9 String m(Integer x1, X x2);
aoqi@0 10 }
aoqi@0 11
aoqi@0 12 static class Foo {
aoqi@0 13 String getNameAt(Integer i) { return ""; }
aoqi@0 14 }
aoqi@0 15
aoqi@0 16 <Z> void g(F<Z> fz) { }
aoqi@0 17
aoqi@0 18 void test() {
aoqi@0 19 g(Foo::getName);
aoqi@0 20 }
aoqi@0 21 }

mercurial