11 lines
203 B
Kotlin
Vendored
11 lines
203 B
Kotlin
Vendored
// COMPARE_WITH_LIGHT_TREE
|
|
// !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<!>)
|
|
}
|