b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
8 lines
76 B
Plaintext
Vendored
8 lines
76 B
Plaintext
Vendored
interface IFoo {
|
|
abstract fun foo()
|
|
fun bar() {
|
|
<this>.foo()
|
|
}
|
|
|
|
}
|