blob: e54b6940c74ef74ef08a10a59ca29e7659d88d14 [file] [log] [blame]
package test
// Tests that type variables of properties are written to the getter signature
val <K, V> Map<K, V>.test: Map<V, K>
get() = this as Map<V, K>