Files
kotlin-fork/js/js.translator/testData/box/closure/closureValToScopeWithSameNameDeclaration.kt
T
2018-09-12 09:49:25 +03:00

32 lines
468 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1282
package foo
val f = true
fun box(): String {
val bar = "test "
val boo = "another "
fun baz(): String {
var result = bar
if (f) {
val bar = 42
result += bar
val boo = 7
result += boo
}
result += boo
result += bar
return result
}
val r = baz()
if (r != "test 427another test ") return r;
return "OK"
}