We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ignore
1 parent fe910c7 commit 196cb65Copy full SHA for 196cb65
crates/hir_def/src/item_tree.rs
@@ -538,20 +538,20 @@ pub struct UseTree {
538
539
#[derive(Debug, Clone, Eq, PartialEq)]
540
pub enum UseTreeKind {
541
- /// ```ignore
+ /// ```
542
/// use path::to::Item;
543
/// use path::to::Item as Renamed;
544
/// use path::to::Trait as _;
545
/// ```
546
Single { path: Interned<ModPath>, alias: Option<ImportAlias> },
547
548
549
/// use *; // (invalid, but can occur in nested tree)
550
/// use path::*;
551
552
Glob { path: Option<Interned<ModPath>> },
553
554
555
/// use prefix::{self, Item, ...};
556
557
Prefixed { prefix: Option<Interned<ModPath>>, list: Box<[UseTree]> },
0 commit comments