test/tools/javac/NameCollision.java

Wed, 09 Apr 2008 11:19:15 -0700

author
xdono
date
Wed, 09 Apr 2008 11:19:15 -0700
changeset 15
18f0b1b5ffd6
parent 1
9a66ca7c79fa
child 69
82c7aa6fe50a
permissions
-rw-r--r--

Added tag jdk7-b25 for changeset 58039502942e

     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  * @run shell NameCollision.sh
     8  */
    10 // The test fails if the compiler crashes.
    12 public class NameCollision {
    13     class Runnable implements Runnable { } // ERROR
    14 }

mercurial