In Java, I am able to activate compiler warnings (even errors) for autoboxing. How can I achieve the same in Kotlin? Right now I often find myself decompiling the Kotlin bytecode to Java to double-check, which seems like a hassle.
I quickly skimmed through some static code analysis tools for Kotlin, but haven't found one that supports checking boxing events.