Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
duplicateDirrectOverriddenCallables.kt
blob: 03ef21b5775a72e41b21cee3d52caa4dc83b987b [
file
]
// FIR_IDENTICAL
// ISSUE: KT-61095
package
org
.
example
interface
Base
<
P
>
{
fun child
(
props
:
Int
=
10
)
}
interface
Intermediate
<
P
>
:
Base
<
P
>
class
Implementation
<
P
>()
:
Intermediate
<
P
>,
Base
<
P
>
{
override
fun child
(
props
:
Int
)
{}
}