Files
kotlin-fork/compiler/testData/ir/irText/singletons/object.kt
T

11 lines
120 B
Kotlin
Vendored

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