20e36438e2
Move those tests which do not require neither stdlib nor reflect
7 lines
73 B
Kotlin
Vendored
7 lines
73 B
Kotlin
Vendored
fun foo() = "OK"
|
|
|
|
fun box(): String {
|
|
val x = ::foo
|
|
return x()
|
|
}
|