Files
kotlin-fork/compiler/testData/script/smoke_exception.kts
T
Mikhail Zarechenskiy b18cbc37c6 Do not generate properties from script constructor
From now all script parameter properties are generated by template class
2016-09-20 16:22:42 +03:00

11 lines
96 B
Kotlin
Vendored

@file:DependsOn("@{runtime}")
fun main() {
error("my error")
}
fun a() {
main()
}
a()