Files
kotlin-fork/compiler/testData/integration/smoke/scriptException/script.kts
T

11 lines
67 B
Kotlin
Vendored

fun main() {
error("my error")
}
fun a() {
main()
}
a()