Files
kotlin/compiler/testData/compileJavaAgainstKotlin/property/GenericProperty.kt
2014-03-19 23:24:27 +04:00

7 lines
153 B
Kotlin

package test
// Tests that type variables of properties are written to the getter signature
val <K, V> test: Map<K, V>
get() = java.util.HashMap()