blob: 6a1056cc26b95db1f9bc5454eab86d33838777ce [file] [log] [blame]
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
}