Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/contextReceivers/this.kt
T
2021-12-09 13:26:37 +03:00

23 lines
367 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND_FIR: JVM_IR
// FIR status: context receivers aren't yet supported
class A<T>(val a: T)
class B(val b: Any?)
context(A<String>, B) fun f() {
this@A.a.length
this@B.b
}
fun box(): String {
with(A("")) {
with(B(null)) {
f()
}
}
return "OK"
}