Files

11 lines
120 B
Kotlin
Vendored

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