17 lines
269 B
Kotlin
Vendored
17 lines
269 B
Kotlin
Vendored
// FILE: test.kt
|
|
import base.*
|
|
|
|
class Derived : Base<Long>() {
|
|
inner class Inner {
|
|
fun foo() = this@Derived[0L]
|
|
}
|
|
}
|
|
|
|
fun box() = Derived().Inner().foo()
|
|
|
|
// FILE: Base.kt
|
|
package base
|
|
|
|
open class Base<K> {
|
|
protected operator fun get(key: K) = "OK"
|
|
} |