Fix for EA-38626 - can't find class delegate for JetLightClass constructed for kotlin enum entry.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
enum class Direction {
|
||||
NORTH
|
||||
SOUTH(val x : Int) {
|
||||
fun again() : String {
|
||||
return "Hello"
|
||||
}
|
||||
|
||||
class Hello
|
||||
}
|
||||
WEST {
|
||||
class Some {
|
||||
fun test() : Int {
|
||||
return 12 + 14
|
||||
}
|
||||
}
|
||||
}
|
||||
EAST
|
||||
}
|
||||
Reference in New Issue
Block a user