]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc/use-attr.rs
Rollup merge of #58210 - nnethercote:find_outlives-debug_assert, r=matthewjasper
[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;