rust/tests/rustdoc-html/use-attr.rs
2026-01-07 14:23:30 +01:00

8 lines
236 B
Rust

//@ edition:2018
// ICE when rustdoc encountered a use statement of a non-macro attribute (see #58054)
//@ has use_attr/index.html
//@ has - '//code' 'pub use proc_macro_attribute'
pub use proc_macro_attribute;
use proc_macro_derive;