// LANGUAGE: +ProhibitAllMultipleDefaultsInheritedFromSupertypes // ISSUE: KT-36188 interface SomeRandomBase { fun child(props: Int = 20) } interface SomeRandomOverride : SomeRandomBase open class Keker

{ open fun child(props: Int = 10) {} } class Implementation

() : Keker

(), SomeRandomOverride

{ override fun child(props: Int) {} }