Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
propertyCallableReference
/
valModule.kt
blob: 691ec66b6c12189f2827079c2425c9066c346048 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
val x
=
42
fun box
():
String
{
val p
=
::
x
assertEquals
(
42
,
p
.
get
())
return
"OK"
}