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