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

17 lines
194 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
class Outer {
val x: Int = 1
}
context(Outer)
class Inner(arg: Any) {
fun bar() = x
}
fun f(outer: Outer) {
with(outer) {
Inner(3)
}
}