This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
crates/ide-diagnostics/src Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ pub(crate) fn unresolved_assoc_item(
13
13
"no such associated item" ,
14
14
d. expr_or_pat . clone ( ) . map ( Into :: into) ,
15
15
)
16
+ . experimental ( )
16
17
}
17
18
18
19
#[ cfg( test) ]
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ pub fn diagnostics(
373
373
AnyDiagnostic :: UndeclaredLabel ( d) => handlers:: undeclared_label:: undeclared_label ( & ctx, & d) ,
374
374
AnyDiagnostic :: UnimplementedBuiltinMacro ( d) => handlers:: unimplemented_builtin_macro:: unimplemented_builtin_macro ( & ctx, & d) ,
375
375
AnyDiagnostic :: UnreachableLabel ( d) => handlers:: unreachable_label:: unreachable_label ( & ctx, & d) ,
376
- AnyDiagnostic :: UnresolvedAssocItem ( d) => handlers:: unresolved_assoc_item:: unresolved_assoc_item ( & ctx, & d) . experimental ( ) ,
376
+ AnyDiagnostic :: UnresolvedAssocItem ( d) => handlers:: unresolved_assoc_item:: unresolved_assoc_item ( & ctx, & d) ,
377
377
AnyDiagnostic :: UnresolvedExternCrate ( d) => handlers:: unresolved_extern_crate:: unresolved_extern_crate ( & ctx, & d) ,
378
378
AnyDiagnostic :: UnresolvedField ( d) => handlers:: unresolved_field:: unresolved_field ( & ctx, & d) ,
379
379
AnyDiagnostic :: UnresolvedImport ( d) => handlers:: unresolved_import:: unresolved_import ( & ctx, & d) ,
You can’t perform that action at this time.
0 commit comments