[FIR] Add deserialization of inheritors of sealed classes

This commit is contained in:
Dmitriy Novozhilov
2019-10-17 11:37:43 +03:00
parent 3dc49ab1d4
commit 25e853606e
9 changed files with 79 additions and 2 deletions
@@ -0,0 +1,20 @@
public final class Inheritor2 : R|test/SealedClass| {
public constructor(): R|test/Inheritor2|
}
public final class Inheritor3 : R|test/SealedClass| {
public constructor(): R|test/Inheritor3|
}
public sealed class SealedClass : R|kotlin/Any| {
private constructor(): R|test/SealedClass|
public final class Inheritor1 : R|test/SealedClass| {
public constructor(): R|test/SealedClass.Inheritor1|
}
}