test/tools/javac/lambda/MethodReference69.java

Wed, 17 Jul 2013 14:09:46 +0100

author
mcimadamore
date
Wed, 17 Jul 2013 14:09:46 +0100
changeset 1897
866c87c01285
parent 0
959103a6100f
permissions
-rw-r--r--

8016175: Add bottom-up type-checking support for unambiguous method references
Summary: Type-checking of non-overloaded method references should be independent from target-type
Reviewed-by: jjg, vromero

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