Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
abstractAndNonAbstractInheritedFromInterface.kt
blob: 084a486e85569f2c87bd16911b6d6d5bc752f9fa [
file
]
interface
T
{
fun getFoo
():
String
=
""
}
interface
U
{
fun getFoo
():
String
}
class
C1
:
T
,
U
{
<caret>
}