Files
kotlin-fork/compiler/testData/diagnostics/tests/kt53.kt
T
Pavel V. Talanov cd1ca92f74 KT-53: Allow generic parameter passing for properties.
Obsolete issue.

 #KT-53 Fixed
2012-07-25 14:48:40 +04:00

6 lines
77 B
Kotlin

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