``` private fun falsePos(): Map<String, String> { val key = "key:" return mutableMapOf<String, String>().apply { this[key + "A"] = "valA" this[key + "B"] = "valB" // <-- false positive } } ```