Files
kotlin-fork/compiler/testData/diagnostics/tests/kt53.kt
T
2015-10-14 20:51:01 +03:00

6 lines
74 B
Kotlin
Vendored

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