Does anyone know why the new underscore type operator in Kotlin 1.7 seems to not be working for me?
I'm using the Android Kotlin gradle plugin with Kotlin 1.7, and wherever I put "_" for a type argument, I just get "Unresolved reference: _".
Is this a feature that needs to be explicitly opted-in to? From the 1.7 feature update it sounded like this should work be default.
Even a simple example like mapOf<Int, _>(2 to 3) doesn't work for me.