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