Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/inference/kt27772.kt
T
2023-09-06 11:32:57 +00:00

9 lines
237 B
Kotlin
Vendored

// FIR_IDENTICAL
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() }
}