Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/problems/expectConstructor.kt
T
Ivan Kochurkin 994c2229df [FIR] Report UNSUPPORTED_FEATURE for expect/actual members if MPP is disabled
Always enable MultiPlatformProjects for K2MetadataCompilerArguments

 ^KT-57243 Fixed
2023-05-25 09:46:56 +00:00

16 lines
359 B
Kotlin
Vendored

// LANGUAGE: +MultiPlatformProjects
open class Base(v: String)
expect class Derived(v: String) : Base
expect open class ExpectBase(v: String)
expect class ExpectDerived(v: String) : ExpectBase
expect open class IOException(message: String, cause: Throwable?) {
constructor(message: String)
}
expect class EOFException(message: String) : IOException