7332032bb6
#KT-11573 Fixed
11 lines
195 B
Kotlin
Vendored
11 lines
195 B
Kotlin
Vendored
sealed class Base
|
|
|
|
class Derived: Base() {
|
|
class Derived2: <!INVISIBLE_MEMBER, SEALED_SUPERTYPE!>Base<!>()
|
|
}
|
|
|
|
fun test() {
|
|
class Local: <!INVISIBLE_MEMBER, SEALED_SUPERTYPE!>Base<!>()
|
|
}
|
|
|