mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
7b8c4a9e83
Don't panic on invalid shift while constfolding Instead of panicking on invalid shifts while folding constants we simply give up. Fixes #9463 Notice the "attempt to shift right by `1316134912_u32`", which seems weird. AFAICS it comes from rustc itself. changelog: none