Files
kotlin-fork/compiler/testData/ir/irText/expressions/interfaceThisRef.kt
T
Dmitry Petrov fa4dc26814 Put 'thisReceiver' declaration in class
Interfaces also have 'thisReceiver'
2017-05-04 09:33:03 +03:00

4 lines
56 B
Kotlin
Vendored

interface IFoo {
fun foo()
fun bar() { foo() }
}