Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
intentions
/
replaceExplicitFunctionLiteralParamWithIt
/
notApplicable_notFunctionLiteralParameter.kt
blob: 88710a364ab54e7cf15fb18df84aeda2a6c1cee5 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
private
val foo
=
{
x
:
Int
->
class
Inner
()
{
fun temp
(<
caret
>
y
:
Int
)
:
Int
{
return
x
+
y
}
}
Inner
()
}