Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
superPreference.kt
blob: 0828885210b38aa26cc5277d70c41c659586ce89 [
file
]
abstract
class
A
:
I1
{
open fun a
(){}
}
interface
I1
{
fun i1
()
fun i
()
}
interface
I2
{
fun i2
()
fun a
()
}
interface
I3
{
fun i
()
}
abstract
class
B
:
I2
,
A
(),
I3
{
<caret>
}