@@ -51,6 +51,7 @@ mod handlers {
51
51
pub ( crate ) mod typed_hole;
52
52
pub ( crate ) mod type_mismatch;
53
53
pub ( crate ) mod unimplemented_builtin_macro;
54
+ pub ( crate ) mod unresolved_assoc_item;
54
55
pub ( crate ) mod unresolved_extern_crate;
55
56
pub ( crate ) mod unresolved_field;
56
57
pub ( crate ) mod unresolved_method;
@@ -371,7 +372,8 @@ pub fn diagnostics(
371
372
AnyDiagnostic :: TypeMismatch ( d) => handlers:: type_mismatch:: type_mismatch ( & ctx, & d) ,
372
373
AnyDiagnostic :: UndeclaredLabel ( d) => handlers:: undeclared_label:: undeclared_label ( & ctx, & d) ,
373
374
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) ,
375
377
AnyDiagnostic :: UnresolvedExternCrate ( d) => handlers:: unresolved_extern_crate:: unresolved_extern_crate ( & ctx, & d) ,
376
378
AnyDiagnostic :: UnresolvedField ( d) => handlers:: unresolved_field:: unresolved_field ( & ctx, & d) ,
377
379
AnyDiagnostic :: UnresolvedImport ( d) => handlers:: unresolved_import:: unresolved_import ( & ctx, & d) ,
0 commit comments