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