14 lines
138 B
Kotlin
Vendored
14 lines
138 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class A {
|
|
companion object {
|
|
|
|
}
|
|
}
|
|
|
|
fun use(vararg a: Any?) = a
|
|
|
|
fun test() {
|
|
use(use(A, null).toString())
|
|
}
|
|
|