Files
kotlin-fork/compiler/testData/ir/irText/expressions/interfaceThisRef.kt.txt
T
2024-02-16 10:19:38 +00:00

10 lines
78 B
Kotlin
Vendored

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