about summary refs log tree commit diff
path: root/tests/ui/static/static-align.rs
AgeCommit message (Collapse)AuthorLines
2025-09-26Support `#[rustc_align_static]` inside `thread_local!`Jules Bertholet-2/+82
2025-09-09allow `#[rustc_align_static(N)]` on `static`sFolkert de Vries-0/+26
We need a different attribute than `rustc_align` because unstable attributes are tied to their feature (we can't have two unstable features use the same unstable attribute). Otherwise this uses all of the same infrastructure as `#[rustc_align]`.