Fix broken isEnumClassObject methods

Out of three methods, two were incorrect
This commit is contained in:
Alexander Udalov
2013-03-14 18:19:43 +04:00
parent c3a2f16624
commit 68844131b0
8 changed files with 49 additions and 48 deletions
@@ -0,0 +1,8 @@
class A {
class object {
fun values() = "O"
fun valueOf() = "K"
}
}
fun box() = A.values() + A.valueOf()