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

13 lines
121 B
Kotlin
Vendored

class A {
companion object {
}
}
fun use(vararg a: Any?) = a
fun test() {
use(use(A, null).toString())
}