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