Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
kt55503.fir.kt
blob: 70bad42bb8578fc23f9dc0c5005ba7e5bab7d2aa [
file
]
fun foo
()
=
withIntList
{
withStringSequence
{
forEach
{
line
->
line
.<!
UNRESOLVED_REFERENCE
!>
rem
<!>(
1
)
line
.
length
}
}
}
fun withIntList
(
x
:
List
<
Int
>.()
->
Unit
)
{}
fun
<
T
>
withStringSequence
(
action
:
Sequence
<
String
>.()
->
T
):
T
=
TODO
()