f0fba7be64
#KT-57171 Fixed
18 lines
171 B
Kotlin
Vendored
18 lines
171 B
Kotlin
Vendored
// !LANGUAGE: +ContextReceivers
|
|
// TARGET_BACKEND: JVM_IR
|
|
|
|
class C {
|
|
val c = 42
|
|
}
|
|
|
|
context(C)
|
|
fun foo() {
|
|
c
|
|
}
|
|
|
|
fun bar(c: C) {
|
|
with(c) {
|
|
foo()
|
|
}
|
|
}
|