c55a7dd038
^KT-59835
8 lines
182 B
Kotlin
Vendored
8 lines
182 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
|
package test
|
|
|
|
fun nullableFun(): Int? = null
|
|
fun Int.foo() {}
|
|
|
|
val test1 = <!SAFE_CALLABLE_REFERENCE_CALL!>nullableFun()?::<!UNSAFE_CALL!>foo<!><!>
|