mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
16 lines
323 B
Kotlin
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"
|
|
} |