blob: 446dd5110ea4ecf46a1a7f26ff65984287c7bb71 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 5071831
* @summary javac allows enum in an inner class
* @author gafter
*
* @compile/fail/ref=NestedEnum.out -XDrawDiagnostics NestedEnum.java
*/
class NestedEnum {
class Inner {
enum NotAllowedInNonStaticInner {}
}
}