Files
kotlin-fork/compiler/testData/diagnostics/tests/redeclarations/RedeclarationParameterlessMainInvalid.kt
T
Denis Zharkov 2c920b732c Support main entry-point without arguments in frontend
#KT-26574 In Progress
2018-09-12 09:48:13 +03:00

8 lines
155 B
Kotlin
Vendored

// FILE: a.kt
<!CONFLICTING_OVERLOADS!>fun main()<!> {}
suspend fun main(args: Array<String>) {}
// FILE: b.kt
<!CONFLICTING_OVERLOADS!>fun main()<!> {}