Files
kotlin-fork/compiler/testData/cli/jvm/firHello.kt
T
2020-01-08 13:20:00 +01:00

18 lines
276 B
Kotlin
Vendored

fun box(): String = "OK"
class E(s: String) : Exception(s) {
}
fun testEmpty(ss: List<String>) {
for (s in ss);
}
fun main(args: Array<String>) {
if (box() == "OK") {
System.out.println("Hello")
// println("Hello")
throw E("Hello")
}
}