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"
}