13 lines
174 B
Kotlin
13 lines
174 B
Kotlin
package codegen.`try`.try3
|
|
|
|
import kotlin.test.*
|
|
|
|
@Test fun runTest() {
|
|
val x = try {
|
|
throw Error()
|
|
} catch (e: Throwable) {
|
|
6
|
|
}
|
|
|
|
println(x)
|
|
} |