]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/crate-attrs-multiple.rs
Rollup merge of #106816 - TimNN:rental-remap, r=oli-obj
[rust.git] / tests / ui / proc-macro / crate-attrs-multiple.rs
1 // Multiple custom crate-level attributes, both inert and active.
2
3 // check-pass
4 // aux-crate:test_macros=test-macros.rs
5
6 #![feature(custom_inner_attributes)]
7 #![feature(prelude_import)]
8
9 #![test_macros::identity_attr]
10 #![rustfmt::skip]
11 #![test_macros::identity_attr]
12 #![rustfmt::skip]
13
14 fn main() {}