9 lines
77 B
Kotlin
Vendored
9 lines
77 B
Kotlin
Vendored
interface IFoo {
|
|
abstract fun foo()
|
|
|
|
fun bar() {
|
|
<this>.foo()
|
|
}
|
|
|
|
}
|