Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/ClassObjectMember.A.kt
T
Alexander Udalov 0fea6822c3 Fix codegen of loaded class objects
Remove useless check and todo.

 #KT-2717 Fixed
 #KT-3142 Fixed
2013-01-09 15:40:21 +04:00

7 lines
83 B
Kotlin

class A {
class object {
fun foo() = 42
val bar = "OK"
}
}