Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
145b5051f737bcd07fb6d5440a722cea8ba3f98c
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionClasses
/
simple.kt
blob: db2ec19061e713421abe89ae30f4067c3749c514 [
file
]
// LANGUAGE: +ContextReceivers
// TARGET_BACKEND: JVM_IR
class
A
{
val ok
=
"OK"
}
context
(
A
)
class
B
{
fun result
()
=
ok
}
fun box
()
=
with
(
A
())
{
B
().
result
()
}