File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,8 @@ impl Foo for Bar {
65
65
"## ,
66
66
67
67
E0053 : r##"
68
- In a trait method implementation, the function signature must match exactly.
69
- This error indicates a mutability mismatch between a trait method signature
70
- and the signature of the implementation.
68
+ For any given method of a trait, the mutabilities of the parameters must match
69
+ between the trait definition and the implementation.
71
70
72
71
Here's an example where the mutability of the `self` parameter is wrong:
73
72
@@ -130,13 +129,13 @@ exactly once.
130
129
"## ,
131
130
132
131
E0066 : r##"
133
- Box placement expressions (like C++'s "placement new") do not support any
132
+ Box placement expressions (like C++'s "placement new") do not yet support any
134
133
place expression except the exchange heap (i.e. `std::boxed::HEAP`).
135
- Furthermore, the syntax is changing to use `in` instead of `box`. See [RFC
136
- 470][rfc470] and [RFC 809][rfc809 ] for more details.
134
+ Furthermore, the syntax is changing to use `in` instead of `box`. See [RFC 470]
135
+ and [RFC 809] for more details.
137
136
138
- [rfc470 ]: https://github.com/rust-lang/rfcs/pull/470
139
- [rfc809 ]: https://github.com/rust-lang/rfcs/pull/809
137
+ [RFC 470 ]: https://github.com/rust-lang/rfcs/pull/470
138
+ [RFC 809 ]: https://github.com/rust-lang/rfcs/pull/809
140
139
"## ,
141
140
142
141
E0067 : r##"
You can’t perform that action at this time.
0 commit comments