You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sealed class SealedClass
abstract class AbstractClass
class SealedSubClass: SealedClass()
class AbstractSubClass: AbstractClass()
fun main() {
SealedSubClass()
AbstractSubClass()
}
For the following
src/Example.kt
execution of
produces report


Expected behaviour
<init>()
constructor for sealed classes should be tracked in the same way as the abstract classesEnvironment
master
branch built locallyThe text was updated successfully, but these errors were encountered: