test/tools/javac/failover/FailOver11.java

Mon, 26 Mar 2012 15:28:49 +0100

author
mcimadamore
date
Mon, 26 Mar 2012 15:28:49 +0100
changeset 1239
2827076dbf64
parent 0
959103a6100f
permissions
-rw-r--r--

7133185: Update 292 overload resolution logic to match JLS
Summary: Re-implement special overload resolution support for method handles according to the JLS SE 7 definition
Reviewed-by: jjg, dlsmith, jrose

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6970584
     4  * @summary Flow.java should be more error-friendly
     5  * @author mcimadamore
     6  *
     7  * @compile/fail/ref=FailOver11.out -XDrawDiagnostics -XDshouldStopPolicy=FLOW -XDdev FailOver11.java
     8  */
    10 class Test extends Test {
    12     boolean cond;
    14     void m(Object o) {}
    16     { m(cond ? null : null); }
    17 }

mercurial