Is there any way for intellij to warn about the following: ```fun main() { val qq = mutableMapO...
v
Is there any way for intellij to warn about the following:
Copy code
fun main() {
    val qq = mutableMapOf<String, String>()
    // ...
    qq["abc"] to "def" // warn here?
    // ...
    println(qq) // prints {}
}
c
seems useful. you could create a youtrack issue