Files

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"
}