Files

7 lines
91 B
Kotlin
Vendored

// FIR_IDENTICAL
val <T> T.foo : T?
get() = null
fun test(): Int? {
return 1.foo
}