Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
java8Overrides
/
singleRelevantDefault.kt
blob: 960123c139b972399aa3ac9b008711527d8f79b9 [
file
]
// FIR_IDENTICAL
interface
ITop
{
fun foo
()
{}
}
interface
ILeft
:
ITop
interface
IRight
:
ITop
interface
IDerived
:
ILeft
,
IRight