20e36438e2
Move those tests which do not require neither stdlib nor reflect
9 lines
104 B
Kotlin
Vendored
9 lines
104 B
Kotlin
Vendored
fun box() : String {
|
|
try {
|
|
return "OK"
|
|
}
|
|
finally {
|
|
null?.toString()
|
|
}
|
|
}
|