diff --git a/crates/rust-analyzer/src/diagnostics.rs b/crates/rust-analyzer/src/diagnostics.rs index b46281c985..d24c55cee6 100644 --- a/crates/rust-analyzer/src/diagnostics.rs +++ b/crates/rust-analyzer/src/diagnostics.rs @@ -18,7 +18,9 @@ pub struct DiagnosticsConfig { #[derive(Debug, Default, Clone)] pub(crate) struct DiagnosticCollection { + // FIXME: should be FxHashMap> pub(crate) native: FxHashMap>, + // FIXME: should be Vec pub(crate) check: FxHashMap>, pub(crate) check_fixes: CheckFixes, changes: FxHashSet,