Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
resolvedCalls
/
hasBothDispatchAndExtensionReceivers.kt
blob: 5e244b71f064f1356055a71bb53d25bc989e4550 [
file
]
class
A
{
fun B
.
foo
()
{}
}
interface
B
fun bar
(
a
:
A
,
b
:
B
)
{
with
(
a
)
{
b
.<
caret
>
foo
()
}
}