Files
kotlin-fork/compiler/testData/codegen/box/sam/kt63564.kt
T
Kirill Rakhman 934253878b [Tests] Add regression test for KT-63564
#KT-63564 Fixed
2023-11-30 08:39:05 +00:00

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