rust/tests/ui/proc-macro/crate-attrs-multiple.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
302 B
Rust
Raw Normal View History

// 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() {}