Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
resources
/
intentionDescriptions
/
AnonymousFunctionToLambdaIntention
/
after.kt.template
blob: b1515663e2062c06ca0b783bd4bd038ee9b61f07 [
file
] [
log
] [
blame
]
fun foo
(
f
:
()
->
Int
)
{
f
()
}
fun main
(
args
:
String
)
{
foo
{
1
}
}