summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_messages/locales/en-US/typeck.ftl
blob: c61735a57e163aaf929049df2823e9a326b52588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
typeck-field-multiply-specified-in-initializer =
    field `{$ident}` specified more than once
    .label = used more than once
    .previous-use-label = first use of `{$ident}`

typeck-unrecognized-atomic-operation =
    unrecognized atomic operation function: `{$op}`
    .label = unrecognized atomic operation

typeck-wrong-number-of-generic-arguments-to-intrinsic =
    intrinsic has wrong number of {$descr} parameters: found {$found}, expected {$expected}
    .label = expected {$expected} {$descr} {$expected ->
        [one] parameter
        *[other] parameters
    }

typeck-unrecognized-intrinsic-function =
    unrecognized intrinsic function: `{$name}`
    .label = unrecognized intrinsic

typeck-lifetimes-or-bounds-mismatch-on-trait =
    lifetime parameters or bounds on {$item_kind} `{$ident}` do not match the trait declaration
    .label = lifetimes do not match {$item_kind} in trait
    .generics-label = lifetimes in impl do not match this {$item_kind} in trait

typeck-drop-impl-on-wrong-item =
    the `Drop` trait may only be implemented for structs, enums, and unions
    .label = must be a struct, enum, or union

typeck-field-already-declared =
    field `{$field_name}` is already declared
    .label = field already declared
    .previous-decl-label = `{$field_name}` first declared here

typeck-copy-impl-on-type-with-dtor =
    the trait `Copy` may not be implemented for this type; the type has a destructor
    .label = `Copy` not allowed on types with destructors

typeck-multiple-relaxed-default-bounds =
    type parameter has more than one relaxed default bound, only one is supported

typeck-copy-impl-on-non-adt =
    the trait `Copy` may not be implemented for this type
    .label = type is not a structure or enumeration

typeck-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

typeck-ambiguous-lifetime-bound =
    ambiguous lifetime bound, explicit lifetime bound required

typeck-assoc-type-binding-not-allowed =
    associated type bindings are not allowed here
    .label = associated type not allowed here

typeck-functional-record-update-on-non-struct =
    functional record update syntax requires a struct

typeck-typeof-reserved-keyword-used =
    `typeof` is a reserved keyword but unimplemented
    .suggestion = consider replacing `typeof(...)` with an actual type
    .label = reserved keyword

typeck-return-stmt-outside-of-fn-body =
    return statement outside of function body
    .encl-body-label = the return is part of this body...
    .encl-fn-label = ...not the enclosing function body

typeck-yield-expr-outside-of-generator =
    yield expression outside of generator literal

typeck-struct-expr-non-exhaustive =
    cannot create non-exhaustive {$what} using struct expression

typeck-method-call-on-unknown-type =
    the type of this value must be known to call a method on a raw pointer on it

typeck-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

typeck-address-of-temporary-taken = cannot take address of a temporary
    .label = temporary value

typeck-add-return-type-add = try adding a return type

typeck-add-return-type-missing-here = a return type might be missing here

typeck-expected-default-return-type = expected `()` because of default return type

typeck-expected-return-type = expected `{$expected}` because of return type

typeck-unconstrained-opaque-type = unconstrained opaque type
    .note = `{$name}` must be used in combination with a concrete type within the same module

typeck-missing-type-params =
    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
    }
    .no-suggestion-label = missing {$parameterCount ->
        [one] reference
        *[other] references
    } to {$parameters}
    .note = because of the default `Self` reference, type parameters must be specified on object types

typeck-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

typeck-substs-on-overridden-impl = could not resolve substs on overridden impl