Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/inference/kt27772.fir.kt
T

9 lines
243 B
Kotlin
Vendored

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