Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/resolve/lambdaArgumentOfInapplicableCall.fir.kt
T
2021-02-19 10:17:16 +03:00

7 lines
149 B
Kotlin
Vendored

// KT-45010
fun foo(map: MutableMap<Int, String>) {
map.<!INAPPLICABLE_CANDIDATE!>getOrPut<!>("Not an Int") {
"Hello" + " world"
}
}