Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/nestedCalls/kt5971NestedSafeCall.kt
T
2014-10-18 11:06:53 +04:00

9 lines
175 B
Kotlin

// !DIAGNOSTICS: -UNUSED_PARAMETER
//KT-5971 Missing error when fun argument is safe call
fun foo(i: Int) {}
fun test(s: String?) {
foo(<!TYPE_MISMATCH!>s?.length<!>)
}