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