Files
kotlin-fork/compiler/testData/ir/irText/declarations/contextReceivers/function.kt
T
2022-04-06 16:05:40 +00:00

17 lines
145 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
class C {
val c = 42
}
context(C)
fun foo() {
c
}
fun bar(c: C) {
with(c) {
foo()
}
}