Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir_def/src/item_tree.rs')
| -rw-r--r-- | crates/hir_def/src/item_tree.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_def/src/item_tree.rs b/crates/hir_def/src/item_tree.rs index 0af5d654af..2b89ac5613 100644 --- a/crates/hir_def/src/item_tree.rs +++ b/crates/hir_def/src/item_tree.rs @@ -709,7 +709,7 @@ pub enum ModKind { Inline { items: Box<[ModItem]> }, /// `mod m;` - Outline {}, + Outline, } #[derive(Debug, Clone, Eq, PartialEq)] |