From 6749ee4d7b7a2f6fd57cf15fdb7332d6e94289dc Mon Sep 17 00:00:00 2001 From: mejrs <> Date: Sat, 17 Dec 2022 19:20:44 +0100 Subject: [PATCH] Remove (eager) --- compiler/rustc_mir_build/src/errors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_mir_build/src/errors.rs b/compiler/rustc_mir_build/src/errors.rs index f3bfafb37b7..68179001b91 100644 --- a/compiler/rustc_mir_build/src/errors.rs +++ b/compiler/rustc_mir_build/src/errors.rs @@ -588,7 +588,7 @@ pub struct MultipleMutBorrows { pub span: Span, #[label] pub binding_span: Span, - #[subdiagnostic(eager)] + #[subdiagnostic] pub occurences: Vec, pub name: Ident, }