Files
kotlin-fork/compiler/testData/ir/irText/declarations/contextReceivers/contextReceiverMethod.kt
T
2022-09-28 18:59:56 +04:00

14 lines
177 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
class Context {
fun foo() = 1
}
context(Context)
class Test {
fun foo() = 2
fun bar() {
val x = this@Context.foo()
}
}