Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/nestedCalls/analyzeArgsInFreeExpressionPosition.kt
T

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())
}