JVM_IR: do not explicitly initialize Refs to default values

This commit is contained in:
pyos
2020-03-03 10:06:58 +01:00
committed by Dmitry Petrov
parent 13b04e63be
commit 037b442e86
6 changed files with 10 additions and 15 deletions
@@ -1,7 +1,7 @@
fun runNoInline(f: () -> Unit) = f()
fun test() {
var x = 0
var x = 1
runNoInline { ++x }
}