]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/use-attr.rs
Auto merge of #69550 - RalfJung:scalar, r=oli-obk
[rust.git] / src / test / 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;