934253878b
#KT-63564 Fixed
14 lines
172 B
Kotlin
Vendored
14 lines
172 B
Kotlin
Vendored
import kotlin.reflect.KProperty
|
|
|
|
fun foo(vararg x: KProperty<*>) {}
|
|
|
|
var prop: String = ""
|
|
|
|
fun test() {
|
|
foo(::prop)
|
|
}
|
|
|
|
fun box(): String {
|
|
test()
|
|
return "OK"
|
|
} |