Files
kotlin-fork/compiler/testData/codegen/box/traits/kt3315.kt
T

10 lines
117 B
Kotlin
Vendored

interface B<T> {
fun foo(dd: T): T = dd
}
class A: B<Int>
fun box(): String {
val a = A()
return "OK"
}