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