blob: 0f71953ba12178d3918625737d5c1d51aa25b3a1 [file]
interface Tr<T> {
val v: T
}
class C : Tr<String> {
override val v = "OK"
}
fun box() = C().v