blob: 29a0eca4172812044f0470ee45f8dde30c4aa36e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Multiple custom crate-level attributes, both inert and active.
// check-pass
// aux-crate:test_macros=test-macros.rs
#![feature(custom_inner_attributes)]
#![feature(prelude_import)]
#![test_macros::identity_attr]
#![rustfmt::skip]
#![test_macros::identity_attr]
#![rustfmt::skip]
fn main() {}
|