20e36438e2
Move those tests which do not require neither stdlib nor reflect
12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
fun box(): String {
|
|
val result = "OK"
|
|
|
|
class Local {
|
|
fun foo() = result
|
|
}
|
|
|
|
val member = Local::foo
|
|
val instance = Local()
|
|
return member(instance)
|
|
}
|