2021-10-17 19:32:34 +03:00
|
|
|
// Multiple custom crate-level attributes, both inert and active.
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
|
|
|
//@ aux-crate:test_macros=test-macros.rs
|
2021-10-17 19:32:34 +03:00
|
|
|
|
|
|
|
#![feature(custom_inner_attributes)]
|
|
|
|
#![feature(prelude_import)]
|
|
|
|
|
|
|
|
#![test_macros::identity_attr]
|
|
|
|
#![rustfmt::skip]
|
|
|
|
#![test_macros::identity_attr]
|
|
|
|
#![rustfmt::skip]
|
|
|
|
|
|
|
|
fn main() {}
|