// WITH_RUNTIME fun test() { run { val a = 42 use(a, a) use(a, a) } val a = 33 } fun use(i: Int, j: Int) {}