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