Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
variables
/
changeMutability
/
capturedValInitialization.kt
blob: 32fec5d064a174babfce4ee86bec5d50f5c1d13b [
file
] [
log
] [
blame
]
// "Make variable mutable" "true"
fun
exec
(
f
:
()
->
Unit
)
=
f
()
fun foo
()
{
val x
:
Int
exec
{
<caret>
x
=
42
}
}