test/tools/javac/lambda/MethodReference69.java

Thu, 30 Jan 2014 11:09:01 -0800

author
sogoel
date
Thu, 30 Jan 2014 11:09:01 -0800
changeset 2255
b2e4c5ca111f
parent 0
959103a6100f
permissions
-rw-r--r--

8027175: Existing regression tests in tl/langtools and tl/jdk need to be updated for @bug keyword
Reviewed-by: jjg, ksrini
Contributed-by: matherey.nunez@oracle.com

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