Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/contextReceivers/this.kt
T
2021-12-02 20:23:40 +03:00

21 lines
281 B
Kotlin
Vendored

// TARGET_BACKEND: JVM_IR
// IGNORE_BACKEND_FIR: JVM_IR
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"
}