Files
kotlin-fork/compiler/testData/codegen/box/compileKotlinAgainstKotlin/nestedClassAsBound.kt
T

10 lines
154 B
Kotlin
Vendored

// MODULE: lib
// FILE: Q.kt
class Q<T : Q.S> {
open class S {
val ok = "OK"
}
}
// MODULE: main(lib)
// FILE: box.kt
fun box() = Q.S().ok