Files
kotlin-fork/compiler/testData/cli/jvm/conflictingOverloads.out
T
2015-09-08 02:05:05 +03:00

7 lines
361 B
Plaintext
Vendored

compiler/testData/cli/jvm/conflictingOverloads.kt:1:1: error: 'public fun a(): kotlin.List<kotlin.Int>' is already defined in root package
fun a(): List<Int> = null!!
^
compiler/testData/cli/jvm/conflictingOverloads.kt:2:1: error: 'public fun a(): kotlin.List<kotlin.String>' is already defined in root package
fun a(): List<String> = null!!
^
COMPILATION_ERROR