Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
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"
}