Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
propertyCallableReference
/
varModule.kt
blob: 77ac35cf096f1e9eec921efcf26abc2edaa79db8 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
var
x
=
42
fun box
():
String
{
val p
=
::
x
p
.
set
(
117
)
assertEquals
(
117
,
x
)
assertEquals
(
117
,
p
.
get
())
return
"OK"
}