Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
DiamondFunction.kt
blob: cc3204a20a13b43525ba7ca1098bf6b577fc9737 [
file
]
// FIR_IDENTICAL
interface
Base
{
fun f
()
=
1
}
open
class
Left
()
:
Base
interface
Right
:
Base
class
Diamond
()
:
Left
(),
Right