[FIR] Support sealed class inheritors in multiple files

This commit is contained in:
Dmitriy Novozhilov
2021-02-04 12:17:37 +03:00
parent c8f9cc33ef
commit 490ef210ac
13 changed files with 130 additions and 156 deletions
@@ -2,7 +2,7 @@ class A {
sealed class Base
}
class Derived : <!SEALED_SUPERTYPE!>A.Base<!>()
class Derived : A.Base()
fun test() {
class DerivedLocal : <!SEALED_SUPERTYPE_IN_LOCAL_CLASS!>A.Base<!>()