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