Files
kotlin-fork/compiler/testData/codegen/box/traits/kt3579_2.kt
T
2015-05-18 11:57:39 +03:00

11 lines
184 B
Kotlin
Vendored

interface First
interface Some<T : First> where T : Some<T>
val a: Some<*>? = null
class MClass(val p: String) : First, Some<MClass>
fun box(): String {
return MClass("OK").p
}