File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed
branches/snap-stage3/src/librustc_typeck Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 38a97becdf3e6a6157f6f7ec2d98ade8d8edc193
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: d636b5cf659771d74a5e225b751898f69a35ae9a
4
+ refs/heads/snap-stage3: 588777f5471db2d03b5a376efbc21c1dc10fc364
5
5
refs/heads/try: 7b4ef47b7805a402d756fb8157101f64880a522f
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
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