8 lines
156 B
Kotlin
Vendored
8 lines
156 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
|
package test
|
|
|
|
fun nullableFun(): Int? = null
|
|
fun Int.foo() {}
|
|
|
|
val test1 = nullableFun()?::<!UNRESOLVED_REFERENCE!>foo<!>
|