Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
specifyExplicitLambdaSignature
/
invalidCursorPosition.kt
blob: 6d25834fb086f04f178bc4875c26773cf3a3517b [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
fun main
()
{
val sum
:
(
Int
,
Int
)
->
Int
=
{
x
,
y
->
<caret>
x
+
y
}
}