mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-28 20:16:58 +03:00
f759c23b5c
add another test for promoteds-in-static https://github.com/rust-lang/rust/pull/119614 led to validation of promoteds recursing into statics. These statics can point to `static mut` and interior mutable `static` and do other things we don't allow in `const`, but promoteds are validated as `const`, so we get strange errors (saying "in `const`" when there is no const) and surprising validation failures. https://github.com/rust-lang/rust/pull/120960 fixes that; this here adds another test. r? ``@oli-obk`` Fixes https://github.com/rust-lang/rust/issues/120968