Files
2024-02-16 10:19:38 +00:00

10 lines
78 B
Kotlin
Vendored

interface IFoo {
fun bar() {
<this>.foo()
}
abstract fun foo()
}