2022-09-28 09:21:33 +00:00
hir_analysis_ambiguous_lifetime_bound =
2022-03-31 07:35:17 +00:00
ambiguous lifetime bound, explicit lifetime bound required
2023-08-11 21:27:52 +00:00
hir_analysis_assoc_bound_on_const = expected associated type, found {$descr}
.note = trait bounds not allowed on {$descr}
2022-09-28 09:21:33 +00:00
hir_analysis_assoc_type_binding_not_allowed =
2022-03-31 07:35:17 +00:00
associated type bindings are not allowed here
.label = associated type not allowed here
2022-09-28 09:21:33 +00:00
hir_analysis_associated_type_trait_uninferred_generic_params = cannot use the associated type of a trait with uninferred generic parameters
2022-03-31 07:35:17 +00:00
.suggestion = use a fully qualified path with inferred lifetimes
hir_analysis_associated_type_trait_uninferred_generic_params_multipart_suggestion = use a fully qualified path with explicit lifetimes
2022-11-03 00:45:08 +00:00
hir_analysis_async_trait_impl_should_be_async =
method `{$method_name}` should be async because the method from the trait is async
.trait_item_label = required because the trait method is async
2022-12-27 00:39:36 +00:00
hir_analysis_auto_deref_reached_recursion_limit = reached the recursion limit while auto-dereferencing `{$ty}`
.label = deref recursion limit reached
.help = consider increasing the recursion limit by adding a `#![recursion_limit = "{$suggested_limit}"]` attribute to your crate (`{$crate_name}`)
2023-05-23 01:51:25 +00:00
2023-02-28 05:59:54 +00:00
hir_analysis_cannot_capture_late_bound_const_in_anon_const =
cannot capture late-bound const parameter in a constant
.label = parameter defined here
2023-05-23 01:51:25 +00:00
2023-02-28 05:59:54 +00:00
hir_analysis_cannot_capture_late_bound_ty_in_anon_const =
cannot capture late-bound type parameter in a constant
.label = parameter defined here
2023-05-23 01:51:25 +00:00
2023-02-25 17:26:48 +00:00
hir_analysis_cast_thin_pointer_to_fat_pointer = cannot cast thin pointer `{$expr_ty}` to fat pointer `{$cast_ty}`
2023-05-23 01:51:25 +00:00
2023-04-10 15:04:14 +00:00
hir_analysis_closure_implicit_hrtb = implicit types in closure signatures are forbidden when `for<...>` is present
.label = `for<...>` is here
2023-05-23 01:51:25 +00:00
2022-10-25 18:28:04 +00:00
hir_analysis_const_bound_for_non_const_trait =
~const can only be applied to `#[const_trait]` traits
2023-05-23 01:51:25 +00:00
2022-10-25 18:28:04 +00:00
hir_analysis_const_impl_for_non_const_trait =
const `impl` for trait `{$trait_name}` which is not marked with `#[const_trait]`
.suggestion = mark `{$trait_name}` as const
.note = marking a trait with `#[const_trait]` ensures all default method bodies are `const`
.adding = adding a non-const method body in the future would be a breaking change
2023-05-23 01:51:25 +00:00
2023-02-17 13:44:35 +00:00
hir_analysis_const_param_ty_impl_on_non_adt =
the trait `ConstParamTy` may not be implemented for this type
.label = type is not a structure or enumeration
2023-05-23 01:51:25 +00:00
2023-04-10 15:04:14 +00:00
hir_analysis_const_specialize = cannot specialize on const impl with non-const impl
2023-05-23 01:51:25 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_copy_impl_on_non_adt =
2023-03-07 23:55:51 +00:00
the trait `Copy` cannot be implemented for this type
2023-02-17 13:44:35 +00:00
.label = type is not a structure or enumeration
2023-05-23 01:51:25 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_copy_impl_on_type_with_dtor =
2023-03-07 23:55:51 +00:00
the trait `Copy` cannot be implemented for this type; the type has a destructor
2022-10-13 09:13:02 +00:00
.label = `Copy` not allowed on types with destructors
2023-05-23 01:51:25 +00:00
2023-04-26 18:22:32 +00:00
hir_analysis_drop_impl_negative = negative `Drop` impls are not supported
2023-05-23 01:51:25 +00:00
2022-09-28 09:21:33 +00:00
hir_analysis_drop_impl_on_wrong_item =
2022-07-21 22:00:15 +00:00
the `Drop` trait may only be implemented for local structs, enums, and unions
.label = must be a struct, enum, or union in the current crate
2022-03-31 07:35:17 +00:00
2023-04-26 18:22:32 +00:00
hir_analysis_drop_impl_reservation = reservation `Drop` impls are not supported
2023-05-23 01:51:25 +00:00
2023-05-05 11:54:58 +00:00
hir_analysis_empty_specialization = specialization impl does not specialize any associated items
.note = impl is a specialization of this impl
2023-05-23 01:51:25 +00:00
2023-04-06 23:04:42 +00:00
hir_analysis_enum_discriminant_overflowed = enum discriminant overflowed
.label = overflowed on value after {$discr}
.note = explicitly set `{$item_name} = {$wrapped_discr}` if that is desired outcome
2023-05-23 01:51:25 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_expected_used_symbol = expected `used`, `used(compiler)` or `used(linker)`
2023-05-23 01:51:25 +00:00
2022-09-28 09:21:33 +00:00
hir_analysis_field_already_declared =
2022-03-31 07:35:17 +00:00
field `{$field_name}` is already declared
.label = field already declared
2022-08-10 07:42:10 +00:00
.previous_decl_label = `{$field_name}` first declared here
2022-03-31 07:35:17 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_function_not_found_in_trait = function not found in this trait
2022-03-31 07:35:17 +00:00
2023-02-17 13:44:35 +00:00
hir_analysis_function_not_have_default_implementation = function doesn't have a default implementation
.note = required by this annotation
2022-09-28 09:21:33 +00:00
hir_analysis_functions_names_duplicated = functions names are duplicated
2022-03-31 07:35:17 +00:00
.note = all `#[rustc_must_implement_one_of]` arguments must be unique
2022-09-28 09:21:33 +00:00
hir_analysis_impl_not_marked_default = `{$ident}` specializes an item from a parent `impl`, but that item is not marked `default`
2022-03-31 07:35:17 +00:00
.label = cannot specialize default item `{$ident}`
.ok_label = parent `impl` is here
.note = to specialize, `{$ident}` in the parent `impl` must be marked `default`
2023-03-09 07:42:45 +00:00
hir_analysis_impl_not_marked_default_err = `{$ident}` specializes an item from a parent `impl`, but that item is not marked `default`
.note = parent implementation is in crate `{$cname}`
2022-09-28 09:21:33 +00:00
hir_analysis_invalid_union_field =
2022-03-31 07:35:17 +00:00
field must implement `Copy` or be wrapped in `ManuallyDrop<...>` to be used in a union
2022-04-07 18:46:53 +00:00
.note = union fields must not have drop side-effects, which is currently enforced via either `Copy` or `ManuallyDrop<...>`
2022-03-31 07:35:17 +00:00
2022-09-28 09:21:33 +00:00
hir_analysis_invalid_union_field_sugg =
2022-03-31 07:35:17 +00:00
wrap the field type in `ManuallyDrop<...>`
2023-06-26 18:19:51 +00:00
hir_analysis_late_bound_const_in_apit = `impl Trait` can only mention const parameters from an fn or impl
.label = const parameter declared here
2023-06-26 18:36:37 +00:00
hir_analysis_late_bound_lifetime_in_apit = `impl Trait` can only mention lifetimes from an fn or impl
.label = lifetime declared here
2023-06-26 18:19:51 +00:00
hir_analysis_late_bound_type_in_apit = `impl Trait` can only mention type parameters from an fn or impl
.label = type parameter declared here
2022-09-28 09:21:33 +00:00
hir_analysis_lifetimes_or_bounds_mismatch_on_trait =
2022-10-22 03:09:49 +00:00
lifetime parameters or bounds on {$item_kind} `{$ident}` do not match the trait declaration
2022-03-31 07:35:17 +00:00
.label = lifetimes do not match {$item_kind} in trait
2022-08-10 07:42:10 +00:00
.generics_label = lifetimes in impl do not match this {$item_kind} in trait
2022-10-22 03:09:49 +00:00
.where_label = this `where` clause might not match the one in the trait
2022-11-28 08:03:57 +00:00
.bounds_label = this bound might be missing in the impl
2023-05-23 01:51:25 +00:00
2022-10-22 03:09:49 +00:00
hir_analysis_linkage_type =
invalid type for variable with `#[linkage]` attribute
2023-05-23 01:51:25 +00:00
2023-02-24 20:23:30 +00:00
hir_analysis_main_function_async = `main` function is not allowed to be `async`
.label = `main` function is not allowed to be `async`
2023-05-23 01:51:25 +00:00
2023-02-24 20:23:30 +00:00
hir_analysis_main_function_generic_parameters = `main` function is not allowed to have generic parameters
2022-10-22 03:09:49 +00:00
.label = `main` cannot have generic parameters
2023-05-23 01:51:25 +00:00
2022-10-22 03:09:49 +00:00
hir_analysis_main_function_return_type_generic = `main` function return type is not allowed to have generic parameters
2022-05-06 02:46:12 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_manual_implementation =
manual implementations of `{$trait_name}` are experimental
.label = manual implementations of `{$trait_name}` are experimental
.help = add `#![feature(unboxed_closures)]` to the crate attributes to enable
hir_analysis_missing_one_of_trait_item = not all trait items implemented, missing one of: `{$missing_items_msg}`
.label = missing one of `{$missing_items_msg}` in implementation
.note = required because of this annotation
hir_analysis_missing_tilde_const = missing `~const` qualifier for specialization
2023-05-23 01:51:25 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_missing_trait_item = not all trait items implemented, missing: `{$missing_items_msg}`
2023-04-14 15:02:41 +00:00
.label = missing `{$missing_items_msg}` in implementation
2023-05-23 01:51:25 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_missing_trait_item_label = `{$item}` from trait
2023-05-23 01:51:25 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_missing_trait_item_suggestion = implement the missing item: `{$snippet}`
2023-05-23 01:51:25 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_missing_trait_item_unstable = not all trait items implemented, missing: `{$missing_item_name}`
.note = default implementation of `{$missing_item_name}` is unstable
2023-05-05 23:29:52 +00:00
.some_note = use of unstable library feature '{$feature}': {$reason}
2022-10-13 09:13:02 +00:00
.none_note = use of unstable library feature '{$feature}'
2022-09-28 09:21:33 +00:00
hir_analysis_missing_type_params =
2022-05-07 06:32:01 +00:00
the type {$parameterCount ->
[one] parameter
*[other] parameters
} {$parameters} must be explicitly specified
.label = type {$parameterCount ->
[one] parameter
*[other] parameters
} {$parameters} must be specified for this
.suggestion = set the type {$parameterCount ->
[one] parameter
*[other] parameters
} to the desired {$parameterCount ->
[one] type
*[other] types
}
2022-08-10 07:42:10 +00:00
.no_suggestion_label = missing {$parameterCount ->
2022-05-07 06:32:01 +00:00
[one] reference
*[other] references
} to {$parameters}
.note = because of the default `Self` reference, type parameters must be specified on object types
2022-05-07 06:50:01 +00:00
2022-10-13 09:13:02 +00:00
hir_analysis_multiple_relaxed_default_bounds =
type parameter has more than one relaxed default bound, only one is supported
2022-08-17 09:47:44 +00:00
2023-02-22 23:50:38 +00:00
hir_analysis_must_be_name_of_associated_function = must be a name of an associated function
2023-02-24 20:23:30 +00:00
hir_analysis_must_implement_not_function = not a function
hir_analysis_must_implement_not_function_note = all `#[rustc_must_implement_one_of]` arguments must be associated function names
hir_analysis_must_implement_not_function_span_note = required by this annotation
2023-02-28 05:59:54 +00:00
hir_analysis_must_implement_one_of_attribute = the `#[rustc_must_implement_one_of]` attribute must be used with at least 2 args
hir_analysis_paren_sugar_attribute = the `#[rustc_paren_sugar]` attribute is a temporary means of controlling which traits can use parenthetical notation
.help = add `#![feature(unboxed_closures)]` to the crate attributes to use it
2023-02-25 17:26:48 +00:00
hir_analysis_parenthesized_fn_trait_expansion =
parenthesized trait syntax expands to `{$expanded_type}`
hir_analysis_pass_to_variadic_function = can't pass `{$ty}` to variadic function
.suggestion = cast the value to `{$cast_ty}`
.help = cast the value to `{$cast_ty}`
2023-03-07 22:26:52 +00:00
hir_analysis_placeholder_not_allowed_item_signatures = the placeholder `_` is not allowed within types on item signatures for {$kind}
.label = not allowed in type signatures
2023-03-11 04:10:09 +00:00
hir_analysis_return_type_notation_conflicting_bound =
ambiguous associated function `{$assoc_name}` for `{$ty_name}`
.note = `{$assoc_name}` is declared in two supertraits: `{$first_bound}` and `{$second_bound}`
hir_analysis_return_type_notation_equality_bound =
return type notation is not allowed to use type equality
2023-05-01 05:15:45 +00:00
hir_analysis_return_type_notation_illegal_param_const =
return type notation is not allowed for functions that have const parameters
.label = const parameter declared here
hir_analysis_return_type_notation_illegal_param_type =
return type notation is not allowed for functions that have type parameters
.label = type parameter declared here
2023-03-11 04:10:09 +00:00
hir_analysis_return_type_notation_missing_method =
2023-05-03 19:39:57 +00:00
cannot find associated function `{$assoc_name}` for `{$ty_name}`
2023-04-06 23:04:42 +00:00
2023-05-03 21:09:50 +00:00
hir_analysis_return_type_notation_on_non_rpitit =
2023-04-06 23:04:42 +00:00
return type notation used on function that is not `async` and does not return `impl Trait`
.note = function returns `{$ty}`, which is not compatible with associated type return bounds
.label = this function must be `async` or return `impl Trait`
2023-09-02 04:02:11 +00:00
hir_analysis_rpitit_refined = impl trait in impl method signature does not match trait method signature
.suggestion = replace the return type so that it matches the trait
.label = return type from trait method defined here
.unmatched_bound_label = this bound is stronger than that defined on the trait
2023-04-06 23:04:42 +00:00
hir_analysis_self_in_impl_self =
`Self` is not valid in the self type of an impl block
.note = replace `Self` with a different type
hir_analysis_simd_ffi_highly_experimental = use of SIMD type{$snip} in FFI is highly experimental and may result in invalid code
.help = add `#![feature(simd_ffi)]` to the crate attributes to enable
hir_analysis_specialization_trait = implementing `rustc_specialization_trait` traits is unstable
.help = add `#![feature(min_specialization)]` to the crate attributes to enable
hir_analysis_start_function_parameters = start function is not allowed to have type parameters
.label = start function cannot have type parameters
hir_analysis_start_function_where = start function is not allowed to have a `where` clause
.label = start function cannot have a `where` clause
hir_analysis_start_not_async = `start` is not allowed to be `async`
.label = `start` is not allowed to be `async`
hir_analysis_start_not_target_feature = `start` is not allowed to have `#[target_feature]`
.label = `start` is not allowed to have `#[target_feature]`
2023-04-14 15:02:41 +00:00
hir_analysis_start_not_track_caller = `start` is not allowed to be `#[track_caller]`
.label = `start` is not allowed to be `#[track_caller]`
hir_analysis_static_specialize = cannot specialize on `'static` lifetime
hir_analysis_substs_on_overridden_impl = could not resolve substs on overridden impl
2023-06-15 09:41:14 +00:00
hir_analysis_tait_forward_compat = item constrains opaque type that is not in its signature
.note = this item must mention the opaque type in its signature in order to be able to register hidden types
2023-04-14 15:02:41 +00:00
hir_analysis_target_feature_on_main = `main` function is not allowed to have `#[target_feature]`
hir_analysis_too_large_static = extern static is too large for the current architecture
hir_analysis_track_caller_on_main = `main` function is not allowed to be `#[track_caller]`
.suggestion = remove this annotation
hir_analysis_trait_object_declared_with_no_traits =
at least one trait is required for an object type
.alias_span = this alias does not contain a trait
hir_analysis_transparent_enum_variant = transparent enum needs exactly one variant, but has {$number}
.label = needs exactly one variant, but has {$number}
.many_label = too many variants in `{$path}`
.multi_label = variant here
hir_analysis_transparent_non_zero_sized = transparent {$desc} needs at most one non-zero-sized field, but has {$field_count}
.label = needs at most one non-zero-sized field, but has {$field_count}
.labels = this field is non-zero-sized
hir_analysis_transparent_non_zero_sized_enum = the variant of a transparent {$desc} needs at most one non-zero-sized field, but has {$field_count}
.label = needs at most one non-zero-sized field, but has {$field_count}
.labels = this field is non-zero-sized
2023-04-10 15:04:14 +00:00
hir_analysis_typeof_reserved_keyword_used =
`typeof` is a reserved keyword but unimplemented
.suggestion = consider replacing `typeof(...)` with an actual type
.label = reserved keyword
hir_analysis_unconstrained_opaque_type = unconstrained opaque type
.note = `{$name}` must be used in combination with a concrete type within the same {$what}
hir_analysis_unrecognized_atomic_operation =
unrecognized atomic operation function: `{$op}`
.label = unrecognized atomic operation
2023-05-05 11:54:58 +00:00
hir_analysis_unrecognized_intrinsic_function =
unrecognized intrinsic function: `{$name}`
.label = unrecognized intrinsic
2023-06-05 17:08:27 +00:00
hir_analysis_unused_associated_type_bounds =
unnecessary associated type bound for not object safe associated type
.note = this associated type has a `where Self: Sized` bound. Thus, while the associated type can be specified, it cannot be used in any way, because trait objects are not `Sized`.
.suggestion = remove this bound
2023-04-10 15:04:14 +00:00
hir_analysis_value_of_associated_struct_already_specified =
the value of the associated type `{$item_name}` (from trait `{$def_path}`) is already specified
.label = re-bound here
.previous_bound_label = `{$item_name}` bound here first
hir_analysis_variadic_function_compatible_convention = C-variadic function must have a compatible calling convention, like {$conventions}
.label = C-variadic function must have a compatible calling convention
hir_analysis_variances_of = {$variances_of}
2023-04-26 18:22:32 +00:00
hir_analysis_where_clause_on_main = `main` function is not allowed to have a `where` clause
.label = `main` cannot have a `where` clause
hir_analysis_wrong_number_of_generic_arguments_to_intrinsic =
intrinsic has wrong number of {$descr} parameters: found {$found}, expected {$expected}
.label = expected {$expected} {$descr} {$expected ->
2022-05-07 06:32:01 +00:00
[one] parameter
2023-04-26 18:22:32 +00:00
*[other] parameters
2023-05-23 01:51:25 +00:00
}