]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/trait_selection.ftl
Rollup merge of #106144 - tgross35:patch-1, r=Mark-Simulacrum
[rust.git] / compiler / rustc_error_messages / locales / en-US / trait_selection.ftl
1 trait_selection_dump_vtable_entries = vtable entries for `{$trait_ref}`: {$entries}
2
3 trait_selection_unable_to_construct_constant_value = unable to construct a constant value for the unevaluated constant {$unevaluated}
4
5 trait_selection_empty_on_clause_in_rustc_on_unimplemented = empty `on`-clause in `#[rustc_on_unimplemented]`
6     .label = empty on-clause here
7
8 trait_selection_invalid_on_clause_in_rustc_on_unimplemented = invalid `on`-clause in `#[rustc_on_unimplemented]`
9     .label = invalid on-clause here
10
11 trait_selection_no_value_in_rustc_on_unimplemented = this attribute must have a valid value
12     .label = expected value here
13     .note = eg `#[rustc_on_unimplemented(message="foo")]`
14
15 trait_selection_negative_positive_conflict = found both positive and negative implementation of trait `{$trait_desc}`{$self_desc ->
16         [none] {""}
17        *[default] {" "}for type `{$self_desc}`
18     }:
19     .negative_implementation_here = negative implementation here
20     .negative_implementation_in_crate = negative implementation in crate `{$negative_impl_cname}`
21     .positive_implementation_here = positive implementation here
22     .positive_implementation_in_crate = positive implementation in crate `{$positive_impl_cname}`