mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
6bbc4cb995
add assembly test for infinite recursion with `become` tracking issue: https://github.com/rust-lang/rust/issues/112788 fixes https://github.com/rust-lang/rust/issues/125698 Check that infinite recursion via `become` does not grow the stack (even on opt-level 0). The incomplete implementation of `become` did not guarantee that earlier. Although it's unlikely this ever regresses we may as well test it and close the issue. r? ```@WaffleLapkin```