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