Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
refactoring
/
introduceVariable
/
ComplexCallee.kt.after
blob: 31df8b9a0426eb016ebdfed4e0bf9800abcb943e [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun fn
(
index
:
Int
,
list
:
List
<()->
Unit
>)
{
when
{
index
in
list
.
indices
->
{
val
function
=
list
[
index
]
function
()
}
}
}