Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/constructorInInterface.txt
T

12 lines
302 B
Plaintext
Vendored

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