b612989eb0
Inner enum was placed into the class object of the outer class. Remove the hack from frontend, frontend.java & backend. Fix tests #KT-1174 In Progress
10 lines
168 B
Kotlin
10 lines
168 B
Kotlin
class A {
|
|
class object {
|
|
enum class E { ENTRY } // OK
|
|
}
|
|
|
|
inner class B {
|
|
enum class <!NESTED_CLASS_NOT_ALLOWED!>E<!> { ENTRY }
|
|
}
|
|
}
|