1
Fork 0

Stabilize match_default_bindings

This includes a submodule update to rustfmt
in order to allow a stable feature declaration.
This commit is contained in:
Taylor Cramer 2018-03-26 23:39:29 +02:00
parent e58df0d8c5
commit 3c65f53620
56 changed files with 55 additions and 389 deletions

View file

@ -1,5 +1,5 @@
error[E0594]: cannot assign to immutable borrowed content `*x`
--> $DIR/enum.rs:21:5
--> $DIR/enum.rs:19:5
|
LL | let Wrap(x) = &Wrap(3);
| - consider changing this to `x`
@ -7,7 +7,7 @@ LL | *x += 1; //~ ERROR cannot assign to immutable
| ^^^^^^^ cannot borrow as mutable
error[E0594]: cannot assign to immutable borrowed content `*x`
--> $DIR/enum.rs:25:9
--> $DIR/enum.rs:23:9
|
LL | if let Some(x) = &Some(3) {
| - consider changing this to `x`
@ -15,7 +15,7 @@ LL | *x += 1; //~ ERROR cannot assign to immutable
| ^^^^^^^ cannot borrow as mutable
error[E0594]: cannot assign to immutable borrowed content `*x`
--> $DIR/enum.rs:31:9
--> $DIR/enum.rs:29:9
|
LL | while let Some(x) = &Some(3) {
| - consider changing this to `x`