How can I represent an enum that implements an int...
# announcements
b
How can I represent an enum that implements an interface? I tried
KClass<out Enum<out AnInterface>>
but it didn't work.
KClass<out Enum<*>>
works as expected.