Files
kotlin-fork/compiler/testData/ir/irText/expressions/interfaceThisRef.kt.txt
T

9 lines
78 B
Plaintext
Vendored

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