Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/platformNames/clashingErasure.kt
T
2015-06-12 09:23:31 +03:00

16 lines
322 B
Kotlin
Vendored

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"
}