Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
loopToCallChain
/
flatMap
/
notIterable.kt
blob: 51cc9b335526e4667ded0d405dc291cb64b29de5 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
// IS_APPLICABLE: false
// IS_APPLICABLE_2: false
fun foo
(
list
:
List
<
String
>):
Char
?
{
<caret>
for
(
s
in
list
)
{
for
(
c
in
s
)
{
if
(
c
!=
' '
)
return
c
}
}
return
null
}