Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
contextParameters
/
assignmentOfContextVar.kt
blob: 0b2c7d5f4c72e06da3ea5dbea63cc133241ff132 [
file
]
// LANGUAGE: +ContextParameters
var
x
=
""
context
(
c
:
String
)
var
foo
:
String
get
()
=
x
set
(
value
)
{
x
=
c
+
value
}
fun box
():
String
{
return
with
(
"O"
)
{
foo
=
"K"
foo
}
}