KT.UNNECESSARY_INHERITANCE
Unnecessary super type
This rule reports unnecessary super types. Inheriting from Any or Object is unnecessary and should simply be removed.
Noncompliant Code
Copy
class A : Any()
class B : Object()