// WITH_RUNTIME fun test() { run { val a = create() use(a, a) foo() } } fun create(): String = "" fun use(s: String, t: String) {} fun foo() {}