Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertReferenceToLambda
/
if3.kt
blob: 97d2e712196b2b593dc2972a9cb1e0ad1214cb21 [
file
] [
log
] [
blame
]
class
Test
{
fun bar
()
=
1
fun test
(
x
:
Int
)
{
val foo
:
()
->
Int
=
if
(
x
==
1
)
{
this
::
bar
}
else
{
<caret>
this
::
bar
}
}
}