Files
kotlin-fork/compiler/testData/codegen/box/bridges/kt2920.kt
T
Mark Punzalan 5afab1ac2b [FIR] FIR2IR: Populate calls with type arguments and function type
parameters with bounds/supertypes.
2019-11-25 09:37:47 +03:00

10 lines
104 B
Kotlin
Vendored

interface Tr<T> {
val v: T
}
class C : Tr<String> {
override val v = "OK"
}
fun box() = C().v