Files
kotlin-fork/compiler/testData/ir/irText/expressions/interfaceThisRef.kt.txt
T
2023-05-04 14:11:19 +00:00

9 lines
77 B
Kotlin
Vendored

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