Files
kotlin/compiler/testData/codegen/boxWithStdlib/platformNames/clashingErasure.kt
2014-06-10 18:21:36 +04:00

16 lines
323 B
Kotlin

import kotlin.platform.*
fun <T> List<T>.foo() = "foo"
[platformName("fooInt")]
fun List<Int>.foo() = "fooInt"
fun box(): String {
val strings = listOf("", "").foo()
if (strings != "foo") return "Fail: $strings"
val ints = listOf(1, 2).foo()
if (ints != "fooInt") return "Fail: $ints"
return "OK"
}