mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
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()
|