Interesting, the shorthand `when (someSealedThing)...
# android
d
Interesting, the shorthand
when (someSealedThing) { SomeOption -> Unit; SomeOtherOption -> { ... } }
is used, Kotlin 2.1.20 now reports for
SomeOption -> Unit
the warning "Expression is unused". If I change this to
SomeOption -> { }
it's all fine.
🙁 1