Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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