Files
kotlin-fork/idea/testData/inspections/canBeVal/lambda.kt
T
Mikhail Glukhikh 8600e7348c Can be val inspection: local functions are taken into account #KT-13151 Fixed
(cherry picked from commit 57eb4c1)
2016-07-27 10:50:31 +03:00

10 lines
101 B
Kotlin
Vendored

fun run(f: () -> Unit) = f()
fun foo() {
var a: Int
a = 10
run {
a = 20
}
}