Files
kotlin-fork/compiler/testData/diagnostics/tests/kt53.fir.kt
T

6 lines
74 B
Kotlin
Vendored

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