Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/nestedCalls/kt5971NestedSafeCall.kt
T
2015-10-14 20:39:35 +03:00

10 lines
176 B
Kotlin
Vendored

// !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<!>)
}