Files
kotlin-fork/compiler/testData/ir/irText/singletons/object.kt
T
2016-10-18 09:10:19 +03:00

10 lines
103 B
Kotlin
Vendored

object Z {
fun test() {}
class A {
fun test2() {
test()
}
}
}