]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/use-attr.rs
Rollup merge of #106407 - mejrs:attr_check, r=compiler-errors
[rust.git] / tests / rustdoc / use-attr.rs
1 // edition:2018
2
3 // ICE when rustdoc encountered a use statement of a non-macro attribute (see #58054)
4
5 // @has use_attr/index.html
6 // @has - '//code' 'pub use proc_macro_attribute'
7 pub use proc_macro_attribute;
8 use proc_macro_derive;