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