aaebb7a30e
#KT-51756 Fixed
14 lines
373 B
Kotlin
Vendored
14 lines
373 B
Kotlin
Vendored
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?) {
|
|
<!PRIMARY_CONSTRUCTOR_DELEGATION_CALL_EXPECTED!>constructor(message: String)<!>
|
|
}
|
|
|
|
expect class EOFException(message: String) : IOException
|