Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
resolve
/
candidatesPriority
/
memberVsExtension3.resolve
blob: 2750e4117468c2244b15e9786222af6cc367f924 [
file
]
class
A
{
fun
~
member
~
foo
()
=
1
}
fun A
.
foo
()
=
2
fun test
(
a
:
A
)
{
with
(
a
)
{
this
.
`member`
foo
()
}
}
fun
<
T
,
R
>
with
(
receiver
:
T
,
f
:
T
.()
->
R
)
:
R
=
receiver
.
f
()