Files
kotlin-fork/compiler/testData/diagnostics/tests/overload/FunNoConflictInDifferentPackages.txt
T
Alexander Udalov 3a8ad45dec Append newline to EOF for .txt test data files
Reverts and fixes 102f0d3
2014-10-21 03:18:27 +04:00

17 lines
196 B
Plaintext

package
package pkg1 {
internal fun e(): kotlin.Int
}
package pkg2 {
internal fun e(): kotlin.Int
}
package pkg3 {
package pkg3.pkg1 {
internal fun e(): kotlin.Int
}
}