Files
2020-12-16 19:52:30 +03:00

11 lines
147 B
Kotlin
Vendored

interface Base {
fun check()
}
class My {
lateinit var delegate: Base
fun check() = delegate.check() // Should not resolve
}