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

32 lines
1.0 KiB
Plaintext
Vendored

FILE: expectConstructor.kt
public open class Base : R|kotlin/Any| {
public constructor(v: R|kotlin/String|): R|Base| {
super<R|kotlin/Any|>()
}
}
public final expect class Derived : R|Base| {
public expect constructor(v: R|kotlin/String|): R|Derived|
}
public open expect class ExpectBase : R|kotlin/Any| {
public expect constructor(v: R|kotlin/String|): R|ExpectBase|
}
public final expect class ExpectDerived : R|ExpectBase| {
public expect constructor(v: R|kotlin/String|): R|ExpectDerived|
}
public open expect class IOException : R|kotlin/Any| {
public expect constructor(message: R|kotlin/String|, cause: R|kotlin/Throwable?|): R|IOException|
public expect constructor(message: R|kotlin/String|): R|IOException| {
super<R|kotlin/Any|>()
}
}
public final expect class EOFException : R|IOException| {
public expect constructor(message: R|kotlin/String|): R|EOFException|
}