Files
kotlin-fork/compiler/testData/compileJavaAgainstKotlin/property/GenericProperty.kt
T
Alexander Udalov ace326f4cf Remove JetTypeMapper.map{G,S}etterSignature
Merge their logic with mapSignature()
2013-12-30 04:15:21 +04:00

7 lines
150 B
Kotlin

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