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