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(
1313 "no such associated item" ,
1414 d. expr_or_pat . clone ( ) . map ( Into :: into) ,
1515 )
16+ . experimental ( )
1617}
1718
1819#[ cfg( test) ]
Original file line number Diff line number Diff line change @@ -373,7 +373,7 @@ pub fn diagnostics(
373373 AnyDiagnostic :: UndeclaredLabel ( d) => handlers:: undeclared_label:: undeclared_label ( & ctx, & d) ,
374374 AnyDiagnostic :: UnimplementedBuiltinMacro ( d) => handlers:: unimplemented_builtin_macro:: unimplemented_builtin_macro ( & ctx, & d) ,
375375 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) ,
377377 AnyDiagnostic :: UnresolvedExternCrate ( d) => handlers:: unresolved_extern_crate:: unresolved_extern_crate ( & ctx, & d) ,
378378 AnyDiagnostic :: UnresolvedField ( d) => handlers:: unresolved_field:: unresolved_field ( & ctx, & d) ,
379379 AnyDiagnostic :: UnresolvedImport ( d) => handlers:: unresolved_import:: unresolved_import ( & ctx, & d) ,
You can’t perform that action at this time.
0 commit comments