I have an error for desktop target, has anyone see...
# multiplatform
f
I have an error for desktop target, has anyone seen this before?
domain/SortTimersBy.kt:-1:-1
Details: Internal error in file lowering: java.lang.IllegalStateException: should not be called
at org.jetbrains.kotlin.utils.addToStdlib.AddToStdlibKt.shouldNotBeCalled(addToStdlib.kt:323)
at org.jetbrains.kotlin.utils.addToStdlib.AddToStdlibKt.shouldNotBeCalled$default(addToStdlib.kt:322)
The file looks like and just contains different enums, there are couple of extension functions on the enum at the bottom too.
enum class SortTimersBy {
SORT_ORDER {
override fun sort(timers: List<Timer>) = timers.sortedBy { it.sortOrder }
},