Files
kotlin-fork/compiler/testData/cli/jvm/conflictingOverloads.out
T
2024-02-21 12:25:22 +00:00

10 lines
329 B
Plaintext
Vendored

compiler/testData/cli/jvm/conflictingOverloads.kt:1:1: error: conflicting overloads:
fun a(): List<String>
fun a(): List<Int> = null!!
^^^^^^^^^^^^^^^^^^
compiler/testData/cli/jvm/conflictingOverloads.kt:2:1: error: conflicting overloads:
fun a(): List<Int>
fun a(): List<String> = null!!
^^^^^^^^^^^^^^^^^^^^^
COMPILATION_ERROR