2c920b732c
#KT-26574 In Progress
10 lines
133 B
Kotlin
Vendored
10 lines
133 B
Kotlin
Vendored
// entryPointExists
|
|
package parameterlessInvalid
|
|
|
|
fun main() { // no
|
|
}
|
|
|
|
@JvmName("main")
|
|
fun notMain(args: Array<String>) { // yes
|
|
}
|