11 lines
147 B
Kotlin
Vendored
11 lines
147 B
Kotlin
Vendored
interface Base {
|
|
fun check()
|
|
}
|
|
|
|
|
|
class My {
|
|
lateinit var delegate: Base
|
|
|
|
fun check() = delegate.check() // Should not resolve
|
|
}
|