blob: f39fc0a21694bb6f05927ad9603bb388213f834c [file]
// RUN_PIPELINE_TILL: FRONTEND
interface ILeft {
override fun toString(): String
}
interface IRight {
override fun toString(): String
}
interface IDiamond : ILeft, IRight {
override fun <!METHOD_OF_ANY_IMPLEMENTED_IN_INTERFACE!>toString<!>(): String = "IDiamond"
}
/* GENERATED_FIR_TAGS: functionDeclaration, interfaceDeclaration, override, stringLiteral */