]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/use-attr.rs
Merge commit 'd556c56f792756dd7cfec742b9f2e07612dc10f4' into sync_cg_clif-2021-02-01
[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;