[Playground Link](https://oxc-project.github.io/oxc/playground/?code=3YCAAICwgICAgICAgIC2mcpqpdS%2BeJ2COdGr0XsuuZTV0lrSE3IPYdqvAAqQhl9Y0rqKZPC49MyUqAQ8f39bxYCA) ```ts let b = 0; function hello(a = b, b = 0) {} ``` Currently, The `b` in `a = b` accesses what was actually `b = 0`, but now resolves to `let b = 0`. <img width="461" alt="image" src="https://github.com/oxc-project/oxc/assets/29533304/be39e43c-de6e-4227-a536-680c6a1892cc">