Files
kotlin-fork/compiler/testData/codegen/box/inlineClasses/interfaceDelegation/kt38337Generic.kt
T
2022-02-15 08:11:13 +01:00

14 lines
384 B
Kotlin
Vendored

// WITH_STDLIB
// WORKS_WHEN_VALUE_CLASS
// LANGUAGE: +ValueClasses, +GenericInlineClassParameter
OPTIONAL_JVM_INLINE_ANNOTATION
value class Wrapper<T: Int>(val id: T)
class DMap(private val map: Map<Wrapper<Int>, String>) :
Map<Wrapper<Int>, String> by map
fun box(): String {
val dmap = DMap(mutableMapOf(Wrapper(42) to "OK"))
return dmap[Wrapper(42)] ?: "Fail"
}