mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
This commit: - introduces tests explicating what is and isn't considered a proper main method on the JVM backends. - implements support for parameterless main methods on the JVM IR backend - See KT-34338 for more tests.
12 lines
195 B
Kotlin
Vendored
12 lines
195 B
Kotlin
Vendored
fun main() {
|
|
|
|
}
|
|
|
|
// method: SimpleKt::main
|
|
// jvm signature: ()V
|
|
// generic signature: null
|
|
|
|
// method: SimpleKt::main
|
|
// jvm signature: ([Ljava/lang/String;)V
|
|
// generic signature: null
|