Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
c234f72ea4dcebd1ff29c5a1fcd540f29a83be46
/
.
/
analysis
/
low-level-api-fir
/
testData
/
lazyResolveScopes
/
intersectionOverride.kt
blob: b078ce3bd4bd34f6b008a4ceea02bf2e63a75724 [
file
]
class
<caret>
A
:
B
{
override
fun foo
(
x
:
Int
)
{
}
override
fun foo
(
x
:
String
)
{
}
}
interface
B
:
C
,
D
interface
C
{
fun foo
(
x
:
Int
)
fun foo
(
x
:
String
)
}
interface
D
{
fun foo
(
x
:
Int
)
fun foo
(
x
:
String
)
}