]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/monomorphize.ftl
4c67c6f5cb46dff622ad70086ab18f9f966cd2f3
[rust.git] / compiler / rustc_error_messages / locales / en-US / monomorphize.ftl
1 monomorphize_recursion_limit =
2     reached the recursion limit while instantiating `{$shrunk}`
3     .note = `{$def_path_str}` defined here
4
5 monomorphize_written_to_path = the full type name has been written to '{$path}'
6
7 monomorphize_type_length_limit = reached the type-length limit while instantiating `{$shrunk}`
8
9 monomorphize_consider_type_length_limit =
10     consider adding a `#![type_length_limit="{$type_length}"]` attribute to your crate
11
12 monomorphize_fatal_error = {$error_message}
13
14 monomorphize_unused_generic_params = item has unused generic parameters
15
16 monomorphize_large_assignments =
17     moving {$size} bytes
18     .label = value moved from here
19     .note = The current maximum size is {$limit}, but it can be customized with the move_size_limit attribute: `#![move_size_limit = "..."]`