994c2229df
Always enable MultiPlatformProjects for K2MetadataCompilerArguments ^KT-57243 Fixed
16 lines
359 B
Kotlin
Vendored
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
|