Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-diagnostics/src/tests/overly_long_real_world_cases.rs')
-rw-r--r--crates/ide-diagnostics/src/tests/overly_long_real_world_cases.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/crates/ide-diagnostics/src/tests/overly_long_real_world_cases.rs b/crates/ide-diagnostics/src/tests/overly_long_real_world_cases.rs
index 9883bcc84f..301613e920 100644
--- a/crates/ide-diagnostics/src/tests/overly_long_real_world_cases.rs
+++ b/crates/ide-diagnostics/src/tests/overly_long_real_world_cases.rs
@@ -2722,6 +2722,13 @@ fn foo() {
tracing::error!();
}
"#,
- &["E0432", "inactive-code", "unresolved-macro-call", "syntax-error", "macro-error"],
+ &[
+ "E0432",
+ "E0282",
+ "inactive-code",
+ "unresolved-macro-call",
+ "syntax-error",
+ "macro-error",
+ ],
);
}