Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
resolvedCalls
/
dynamic
/
hasBothDispatchAndExtensionReceiversWithoutExplicitReceiver.kt
blob: a98d369b38e0044ad6ac2da92b566ca5f6656e14 [
file
]
class
A
{
fun
dynamic
.
foo
()
{}
}
fun bar
(
a
:
A
,
b
:
dynamic
)
{
with
(
a
)
{
with
(
b
)
{
<caret>
foo
()
}
}
}