Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/exception.kt
T
2020-03-19 09:51:01 +03:00

7 lines
123 B
Kotlin
Vendored

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