10 lines
156 B
Kotlin
Vendored
10 lines
156 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(s?.length)
|
|
}
|