102f5c60be
#KT-1688 Fixed
11 lines
170 B
Kotlin
11 lines
170 B
Kotlin
fun box(): String {
|
|
var s = ""
|
|
try {
|
|
throw RuntimeException()
|
|
} catch (e : RuntimeException) {
|
|
} finally {
|
|
s += "OK"
|
|
}
|
|
return s
|
|
}
|