Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/inference/kt27772.kt
T
2021-05-25 13:28:27 +03:00

8 lines
220 B
Kotlin
Vendored

fun <T> foo(resources: List<T>) {
resources.map { runCatching { it } }.mapNotNull { it.getOrNull() }
}
fun <T: Any> bar(resources: List<T>) {
resources.map { runCatching { it } }.mapNotNull { it.getOrNull() }
}