Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/contextReceivers/this.kt
T
2022-04-06 16:05:39 +00:00

21 lines
283 B
Kotlin
Vendored

// !LANGUAGE: +ContextReceivers
// TARGET_BACKEND: 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"
}