Files
kotlin-fork/compiler/testData/cli/jvm/firHello.kt
T
Mikhail Glukhikh f4fdc66a34 Introduce experimental FIR compiler #KT-31265 Fixed
This commit also includes several FIR2IR fixes which helps FIR compiler
to produce normal results
2019-05-23 14:02:06 +03:00

12 lines
156 B
Kotlin
Vendored

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