Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
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
()
}
}
}