Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/constructorInInterface.fir.txt
T
2022-11-08 14:51:33 +01:00

26 lines
712 B
Plaintext
Vendored

FILE: constructorInInterface.kt
public abstract interface A : R|kotlin/Any| {
public constructor(s: R|kotlin/String|): R|A| {
super<R|kotlin/Any|>()
}
public open val s: R|kotlin/String| = R|<local>/s|
public get(): R|kotlin/String|
}
public abstract interface B : R|kotlin/Any| {
public constructor(s: R|kotlin/String|): R|B| {
super<R|kotlin/Any|>()
}
public open val s: R|kotlin/String| = R|<local>/s|
public get(): R|kotlin/String|
}
public abstract interface C : R|kotlin/Any| {
public constructor(s: R|kotlin/String|): R|C| {
super<R|kotlin/Any|>()
}
}