blob: aff5243e05ff335d5f86faa2208a495f1a0594d2 [file]
// 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() }
}