Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
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
()