Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/problems/expectConstructor.kt
T
2022-04-01 16:15:53 +03:00

14 lines
322 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?) {
constructor(message: String)
}
expect class EOFException(message: String) : IOException