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

7 lines
91 B
Kotlin
Vendored

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