Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
resolve
/
candidatesPriority
/
implicitThisVsNoReceiver2.resolve
blob: d17bc6961771dcc106561ad196ace1c22894dbba [
file
] [
log
] [
blame
]
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
()