Sign in
android
/
platform
/
external
/
jetbrains
/
kotlin
/
refs/heads/compose-dev
/
.
/
compiler
/
testData
/
resolvedCalls
/
hasBothDispatchAndExtensionReceiversWithoutExplicitReceiver.kt
blob: 5ed43b236d4dd2a862977ef46cb7b6ed0a8ecd1e [
file
] [
log
] [
blame
] [
edit
]
class
A
{
fun B
.
foo
()
{}
}
interface
B
fun bar
(
a
:
A
,
b
:
B
)
{
with
(
a
)
{
with
(
b
)
{
<caret>
foo
()
}
}
}