blob: 5797534027cf951cb43ea4cc49b8cdfb8db0547f [file]
// RUN_PIPELINE_TILL: FRONTEND
operator fun <K, V> MutableMap<K, V>.set(k: K, v: V) {}
fun foo(a: MutableMap<String, String>, x: String?) {
a[x!!] = x
a[x] = x<!UNNECESSARY_NOT_NULL_ASSERTION!>!!<!>
}
fun foo1(a: MutableMap<String, String>, x: String?) {
a[<!ARGUMENT_TYPE_MISMATCH!>x<!>] = x!!
a[x<!UNNECESSARY_NOT_NULL_ASSERTION!>!!<!>] = x
}
/* GENERATED_FIR_TAGS: assignment, checkNotNullCall, funWithExtensionReceiver, functionDeclaration, nullableType,
operator, smartcast, typeParameter */