79bed083e6
KTIJ-23504
26 lines
712 B
Plaintext
Vendored
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|>()
|
|
}
|
|
|
|
}
|