test/tools/javac/NameCollision.java

Fri, 05 Jul 2013 11:04:22 +0100

author
mcimadamore
date
Fri, 05 Jul 2013 11:04:22 +0100
changeset 1890
bfbedbfc522a
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8016702: use of ternary operator in lambda expression gives incorrect results
Summary: Constant types erroneously creep in during inference
Reviewed-by: jjg, vromero

     1 /**
     2  * @test  /nodynamiccopyright/
     3  * @bug 4222327 4785453
     4  * @summary Interface names for classes in the same scope should not
     5  * cause the compiler to crash.
     6  *
     7  * @compile/fail/ref=NameCollision.out -XDrawDiagnostics NameCollision.java
     8  */
    10 // The test fails if the compiler crashes.
    12 public class NameCollision {
    13     class Runnable implements Runnable { } // ERROR
    14 }

mercurial