ace326f4cf
Merge their logic with mapSignature()
7 lines
150 B
Kotlin
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()
|