c0c9552f4c
#KT-5971 Fixed
9 lines
175 B
Kotlin
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<!>)
|
|
} |