Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fc95605a393f931d6a85ae993728de35cb600abb
/
.
/
compiler
/
testData
/
codegen
/
box
/
sam
/
kt63564.kt
blob: d0ce3cc1f2d5968c3185aaa5d4896a11e065a7cd [
file
]
import
kotlin
.
reflect
.
KProperty
fun foo
(
vararg x
:
KProperty
<*>)
{}
var
prop
:
String
=
""
fun test
()
{
foo
(::
prop
)
}
fun box
():
String
{
test
()
return
"OK"
}