You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
passes_unused_var_remove_field_suggestion = try removing the field
740
+
741
+
passes_unused_var_assigned_only = variable `{$name}` is assigned to, but never used
742
+
.note = consider using `_{$name}` instead
743
+
744
+
passes_unnecessary_stable_feature = the feature `{$feature}` has been stable since {$since} and no longer requires an attribute to enable
745
+
746
+
passes_unnecessary_partial_stable_feature = the feature `{$feature}` has been partially stabilized since {$since} and is succeeded by the feature `{$implies}`
747
+
.suggestion = if you are using features which are still unstable, change to using `{$implies}`
748
+
.suggestion_remove = if you are using features which are now stable, remove this line
749
+
750
+
passes_ineffective_unstable_impl = an `#[unstable]` annotation here has no effect
751
+
.note = see issue #55436 <https://github.com/rust-lang/rust/issues/55436> for more information
752
+
753
+
passes_unused_assign = value assigned to `{$name}` is never read
754
+
.help = maybe it is overwritten before being read?
755
+
756
+
passes_unused_assign_passed = value passed to `{$name}` is never read
757
+
.help = maybe it is overwritten before being read?
758
+
759
+
passes_maybe_string_interpolation = you might have meant to use string interpolation in this string literal
760
+
passes_string_interpolation_only_works = string interpolation only works in `format!` invocations
0 commit comments