Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
resolve
/
candidatesPriority
/
implicitThisVsNoReceiver2.resolve
blob: d17bc6961771dcc106561ad196ace1c22894dbba [
file
]
class
A
{
}
~
extension
~
fun A
.
foo
()
=
1
~
simple
~
fun foo
()
=
2
fun test
(
a
:
A
)
{
with
(
a
)
{
`extension`
foo
()
}
}
fun
<
T
,
R
>
with
(
receiver
:
T
,
f
:
T
.()
->
R
)
:
R
=
receiver
.
f
()