Files
kotlin-fork/compiler/fir/resolve/testData/resolveWithStdlib/exception.kt
T
2020-02-14 09:18:52 +03:00

7 lines
123 B
Kotlin
Vendored

fun box(): String = "OK"
fun main(args: Array<String>) {
if (box() == "OK") {
throw Exception("Hello")
}
}