]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/hir_analysis.ftl
use proper spans
[rust.git] / compiler / rustc_error_messages / locales / en-US / hir_analysis.ftl
1 hir_analysis_field_multiply_specified_in_initializer =
2     field `{$ident}` specified more than once
3     .label = used more than once
4     .previous_use_label = first use of `{$ident}`
5
6 hir_analysis_unrecognized_atomic_operation =
7     unrecognized atomic operation function: `{$op}`
8     .label = unrecognized atomic operation
9
10 hir_analysis_wrong_number_of_generic_arguments_to_intrinsic =
11     intrinsic has wrong number of {$descr} parameters: found {$found}, expected {$expected}
12     .label = expected {$expected} {$descr} {$expected ->
13         [one] parameter
14         *[other] parameters
15     }
16
17 hir_analysis_unrecognized_intrinsic_function =
18     unrecognized intrinsic function: `{$name}`
19     .label = unrecognized intrinsic
20
21 hir_analysis_lifetimes_or_bounds_mismatch_on_trait =
22     lifetime parameters or bounds on {$item_kind} `{$ident}` do not match the trait declaration
23     .label = lifetimes do not match {$item_kind} in trait
24     .generics_label = lifetimes in impl do not match this {$item_kind} in trait
25
26 hir_analysis_drop_impl_on_wrong_item =
27     the `Drop` trait may only be implemented for local structs, enums, and unions
28     .label = must be a struct, enum, or union in the current crate
29
30 hir_analysis_field_already_declared =
31     field `{$field_name}` is already declared
32     .label = field already declared
33     .previous_decl_label = `{$field_name}` first declared here
34
35 hir_analysis_copy_impl_on_type_with_dtor =
36     the trait `Copy` may not be implemented for this type; the type has a destructor
37     .label = `Copy` not allowed on types with destructors
38
39 hir_analysis_multiple_relaxed_default_bounds =
40     type parameter has more than one relaxed default bound, only one is supported
41
42 hir_analysis_copy_impl_on_non_adt =
43     the trait `Copy` may not be implemented for this type
44     .label = type is not a structure or enumeration
45
46 hir_analysis_trait_object_declared_with_no_traits =
47     at least one trait is required for an object type
48     .alias_span = this alias does not contain a trait
49
50 hir_analysis_ambiguous_lifetime_bound =
51     ambiguous lifetime bound, explicit lifetime bound required
52
53 hir_analysis_assoc_type_binding_not_allowed =
54     associated type bindings are not allowed here
55     .label = associated type not allowed here
56
57 hir_analysis_functional_record_update_on_non_struct =
58     functional record update syntax requires a struct
59
60 hir_analysis_typeof_reserved_keyword_used =
61     `typeof` is a reserved keyword but unimplemented
62     .suggestion = consider replacing `typeof(...)` with an actual type
63     .label = reserved keyword
64
65 hir_analysis_return_stmt_outside_of_fn_body =
66     return statement outside of function body
67     .encl_body_label = the return is part of this body...
68     .encl_fn_label = ...not the enclosing function body
69
70 hir_analysis_yield_expr_outside_of_generator =
71     yield expression outside of generator literal
72
73 hir_analysis_struct_expr_non_exhaustive =
74     cannot create non-exhaustive {$what} using struct expression
75
76 hir_analysis_method_call_on_unknown_type =
77     the type of this value must be known to call a method on a raw pointer on it
78
79 hir_analysis_value_of_associated_struct_already_specified =
80     the value of the associated type `{$item_name}` (from trait `{$def_path}`) is already specified
81     .label = re-bound here
82     .previous_bound_label = `{$item_name}` bound here first
83
84 hir_analysis_address_of_temporary_taken = cannot take address of a temporary
85     .label = temporary value
86
87 hir_analysis_add_return_type_add = try adding a return type
88
89 hir_analysis_add_return_type_missing_here = a return type might be missing here
90
91 hir_analysis_expected_default_return_type = expected `()` because of default return type
92
93 hir_analysis_expected_return_type = expected `{$expected}` because of return type
94
95 hir_analysis_unconstrained_opaque_type = unconstrained opaque type
96     .note = `{$name}` must be used in combination with a concrete type within the same module
97
98 hir_analysis_missing_type_params =
99     the type {$parameterCount ->
100         [one] parameter
101         *[other] parameters
102     } {$parameters} must be explicitly specified
103     .label = type {$parameterCount ->
104         [one] parameter
105         *[other] parameters
106     } {$parameters} must be specified for this
107     .suggestion = set the type {$parameterCount ->
108         [one] parameter
109         *[other] parameters
110     } to the desired {$parameterCount ->
111         [one] type
112         *[other] types
113     }
114     .no_suggestion_label = missing {$parameterCount ->
115         [one] reference
116         *[other] references
117     } to {$parameters}
118     .note = because of the default `Self` reference, type parameters must be specified on object types
119
120 hir_analysis_manual_implementation =
121     manual implementations of `{$trait_name}` are experimental
122     .label = manual implementations of `{$trait_name}` are experimental
123     .help = add `#![feature(unboxed_closures)]` to the crate attributes to enable
124
125 hir_analysis_substs_on_overridden_impl = could not resolve substs on overridden impl
126
127 hir_analysis_unused_extern_crate =
128     unused extern crate
129     .suggestion = remove it
130
131 hir_analysis_extern_crate_not_idiomatic =
132     `extern crate` is not idiomatic in the new edition
133     .suggestion = convert it to a `{$msg_code}`
134
135 hir_analysis_expected_used_symbol = expected `used`, `used(compiler)` or `used(linker)`
136
137 hir_analysis_missing_parentheses_in_range = can't call method `{$method_name}` on type `{$ty_str}`
138
139 hir_analysis_add_missing_parentheses_in_range = you must surround the range in parentheses to call its `{$func_name}` function
140
141 hir_analysis_const_impl_for_non_const_trait =
142     const `impl` for trait `{$trait_name}` which is not marked with `#[const_trait]`
143     .suggestion = mark `{$trait_name}` as const
144     .note = marking a trait with `#[const_trait]` ensures all default method bodies are `const`
145     .adding = adding a non-const method body in the future would be a breaking change
146
147 hir_analysis_const_bound_for_non_const_trait =
148     ~const can only be applied to `#[const_trait]` traits
149
150 hir_analysis_self_in_impl_self = 
151     `Self` is not valid in the self type of an impl block
152     .note = replace `Self` with a different type