`abstract sealed class X` gives me the compiler wa...
# announcements
c
abstract sealed class X
gives me the compiler warning
Warning:(202, 1) Kotlin: Modifier 'sealed' is redundant because 'abstract' is present
, but shouldn't it be the other way around? every sealed class is abstract but not every abstract class is sealed