blob: 24ccf68592f18384889022e83b4e781e7dd2e9c4 [file]
// WITH_STDLIB
import kotlin.test.*
val sb = StringBuilder()
fun box(): String {
try {
sb.appendLine("Try")
} finally {
sb.appendLine("Finally")
}
sb.appendLine("Done")
assertEquals("""
Try
Finally
Done
""".trimIndent(), sb.toString())
return "OK"
}