test/tools/javac/lambda/8020843/T8020843b.java

Tue, 29 Mar 2016 10:48:49 +0000

author
dbuck
date
Tue, 29 Mar 2016 10:48:49 +0000
changeset 3102
e74dd6df4d4c
parent 0
959103a6100f
permissions
-rw-r--r--

8143647: Javac compiles method reference that allows results in an IllegalAccessError
Summary: Lambda implementation method synthesized by javac should not mention inaccessible types.
Reviewed-by: mcimadamore

aoqi@0 1 /*
aoqi@0 2 * @test /nodynamiccopyright/
aoqi@0 3 * @bug 8020843
aoqi@0 4 * @summary javac crashes on accessibility check with method reference with typevar receiver
aoqi@0 5 * @compile/fail/ref=T8020843b.out -XDrawDiagnostics T8020843b.java
aoqi@0 6 */
aoqi@0 7
aoqi@0 8 class T8020843b {
aoqi@0 9 interface Function<X, Y> {
aoqi@0 10 Y m(X x);
aoqi@0 11 }
aoqi@0 12
aoqi@0 13 interface BiFunction<X, Y, Z> {
aoqi@0 14 Z m(X x, Y y);
aoqi@0 15 }
aoqi@0 16
aoqi@0 17 Object m(int i) { return null; }
aoqi@0 18 static Object m(String t) { return null; }
aoqi@0 19
aoqi@0 20 Object m2(int i) { return null; }
aoqi@0 21 static Object m2(long t) { return null; }
aoqi@0 22
aoqi@0 23 static void test() {
aoqi@0 24 Function<T8020843b, Object> f1 = T8020843b::m; //show bound case diag
aoqi@0 25 BiFunction<T8020843b, String, Object> f2 = T8020843b::m2; //show unbound case diag
aoqi@0 26 }
aoqi@0 27 }

mercurial