blob: 536d6ff43fbac7e76f63690cfaf1846b6a60754e [file] [log] [blame]
// Anti-regression test to demonstrate that at least we mitigated breakage from adding a new
// `#[align]` built-in attribute.
//
// See https://github.com/rust-lang/rust/issues/143834.
//@ check-pass
// Needs edition >= 2018 macro use behavior.
//@ edition: 2018
macro_rules! align {
() => {
/* .. */
};
}
pub(crate) use align;
fn main() {}