blob: ef310843e2136c11d12be791dff25c0b7fdb8819 [file] [log] [blame]
// Check that we don't ICE on `#[doc(alias)]`es placed on use items with list stems.
// issue: <https://github.com/rust-lang/rust/issues/138723>
//@ check-pass
#[doc(alias = "empty")]
pub use {};
#[doc(alias = "id")]
pub use {std::convert::identity};
fn main() {}