b18cbc37c6
From now all script parameter properties are generated by template class
11 lines
96 B
Kotlin
Vendored
11 lines
96 B
Kotlin
Vendored
@file:DependsOn("@{runtime}")
|
|
|
|
fun main() {
|
|
error("my error")
|
|
}
|
|
|
|
fun a() {
|
|
main()
|
|
}
|
|
|
|
a() |