@@ -51,6 +51,7 @@ mod handlers {
5151 pub ( crate ) mod typed_hole;
5252 pub ( crate ) mod type_mismatch;
5353 pub ( crate ) mod unimplemented_builtin_macro;
54+ pub ( crate ) mod unresolved_assoc_item;
5455 pub ( crate ) mod unresolved_extern_crate;
5556 pub ( crate ) mod unresolved_field;
5657 pub ( crate ) mod unresolved_method;
@@ -371,7 +372,8 @@ pub fn diagnostics(
371372 AnyDiagnostic :: TypeMismatch ( d) => handlers:: type_mismatch:: type_mismatch ( & ctx, & d) ,
372373 AnyDiagnostic :: UndeclaredLabel ( d) => handlers:: undeclared_label:: undeclared_label ( & ctx, & d) ,
373374 AnyDiagnostic :: UnimplementedBuiltinMacro ( d) => handlers:: unimplemented_builtin_macro:: unimplemented_builtin_macro ( & ctx, & d) ,
374- AnyDiagnostic :: UnreachableLabel ( d) => handlers:: unreachable_label:: unreachable_label ( & ctx, & d) ,
375+ AnyDiagnostic :: UnreachableLabel ( d) => handlers:: unreachable_label:: unreachable_label ( & ctx, & d) ,
376+ AnyDiagnostic :: UnresolvedAssocItem ( d) => handlers:: unresolved_assoc_item:: unresolved_assoc_item ( & ctx, & d) ,
375377 AnyDiagnostic :: UnresolvedExternCrate ( d) => handlers:: unresolved_extern_crate:: unresolved_extern_crate ( & ctx, & d) ,
376378 AnyDiagnostic :: UnresolvedField ( d) => handlers:: unresolved_field:: unresolved_field ( & ctx, & d) ,
377379 AnyDiagnostic :: UnresolvedImport ( d) => handlers:: unresolved_import:: unresolved_import ( & ctx, & d) ,
0 commit comments