langtools/test/tools/javac/InterfaceInInner.java
author mcimadamore
Wed, 23 Feb 2011 14:17:08 +0000
changeset 8611 316231b590b6
parent 8239 d2c934e951e2
permissions -rw-r--r--
7019631: issues in test headers in b130 Summary: fix to test headers not containing correct bug ID Reviewed-by: jjg

/*
 * @test  /nodynamiccopyright/
 * @bug 4063740 6969184
 * @summary Interfaces may only be declared in top level classes.
 * @author turnidge
 *
 * @compile/fail/ref=InterfaceInInner.out -XDrawDiagnostics InterfaceInInner.java
 */
class InterfaceInInner {
    InterfaceInInner() {
        class foo {
            interface A {
            }
        }
    }
}