7 lines
153 B
Kotlin
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()
|