test/tools/javac/failover/FailOver11.java

Mon, 24 Oct 2011 13:00:30 +0100

author
mcimadamore
date
Mon, 24 Oct 2011 13:00:30 +0100
changeset 1114
05814303a056
parent 0
959103a6100f
permissions
-rw-r--r--

7098660: Write better overload resolution/inference tests
Summary: Add overload/inference debug diagnostics - added test harness using annotations to check outcome of overload resolution/inference
Reviewed-by: jjg

     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