mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
12 lines
313 B
Kotlin
Vendored
12 lines
313 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_VARIABLE
|
|
|
|
fun <T, R> Iterable<T>.map(transform: (T) -> R): List<R> = null!!
|
|
|
|
fun autolabel(l: List<Int>) = l.map (fun (i: Int): Int {
|
|
return@map 4
|
|
})
|
|
|
|
fun unresolvedMapLabel(l: List<Int>) = l.map (l@ fun(i: Int): Int {
|
|
return<!UNRESOLVED_REFERENCE!>@map<!> 4
|
|
})
|