Files
kotlin-fork/compiler/testData/cli/metadata/inheritorOfExpectSealedClass.out
T
2024-02-08 12:59:31 +00:00

14 lines
791 B
Plaintext
Vendored

compiler/testData/cli/metadata/inheritorOfExpectSealedClass/common-1.kt:1:21: error: base: expect and corresponding actual are declared in the same module
expect sealed class Base
^^^^
compiler/testData/cli/metadata/inheritorOfExpectSealedClass/common-2.kt:1:21: error: 'actual class Base : Any' has no corresponding expected declaration
actual sealed class Base
^^^^
compiler/testData/cli/metadata/inheritorOfExpectSealedClass/common-2.kt:1:21: error: base: expect and corresponding actual are declared in the same module
actual sealed class Base
^^^^
compiler/testData/cli/metadata/inheritorOfExpectSealedClass/common-3.kt:1:17: error: unresolved reference '<init>'.
class Derived : Base()
^^^^
COMPILATION_ERROR