[FIR] Supertype and inheritance checkers group
This commit is contained in:
@@ -2,8 +2,8 @@ class A {
|
||||
sealed class Base
|
||||
}
|
||||
|
||||
class Derived : A.Base()
|
||||
class Derived : <!SEALED_SUPERTYPE!>A.Base<!>()
|
||||
|
||||
fun test() {
|
||||
class DerivedLocal : A.Base()
|
||||
class DerivedLocal : <!SEALED_SUPERTYPE_IN_LOCAL_CLASS!>A.Base<!>()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user