Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
loopToCallChain
/
lastOrNull_ifAssign.kt
blob: d55e3e0ab55b793d2bbb4306ddf9c1accd1105ba [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'lastOrNull{}'"
// IS_APPLICABLE_2: false
fun foo
(
list
:
List
<
String
>)
{
var
result
:
String
?
=
null
<caret>
for
(
s
in
list
)
{
if
(
s
.
length
>
0
)
{
result
=
s
}
}
}