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