// FIR_IDENTICAL // ISSUE: KT-61095 package org.example interface Base
{ fun child(props: Int = 10) } interface Intermediate
: Base
class Implementation
() : Intermediate
, Base
{ override fun child(props: Int) {} }