Cannot use doc(inline)
with anonymous imports
Erroneous code example:
#[doc(inline)] // error: invalid doc argument
pub use foo::Foo as _;
RunAnonymous imports are always rendered with #[doc(no_inline)]
. To fix this
error, remove the #[doc(inline)]
attribute.
Example:
pub use foo::Foo as _;
Run