blob: 631e6688a8d0bfd8986943b79b6f3763e4ce82d1 [file]
// RUN_PIPELINE_TILL: BACKEND
interface SupervisorApiCallContextImpl : SupervisorApiCallDbContext, TxExecutor
interface SupervisorApiCallDbContext : TxExecutor, DbContextOwner
interface DbContextOwner : TxExecutor {
override fun foo(p: Int) {}
}
interface TxExecutor {
fun foo(p: Int = 1)
}
/* GENERATED_FIR_TAGS: functionDeclaration, integerLiteral, interfaceDeclaration, override */