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
8 lines
120 B
Kotlin
8 lines
120 B
Kotlin
class A {
|
|
inner class B {
|
|
enum class <!NESTED_CLASS_NOT_ALLOWED!>E<!> {
|
|
ENTRY
|
|
}
|
|
}
|
|
}
|