2018-08-14 07:24:44 -05:00
|
|
|
error[E0594]: cannot assign to field `x.0` of immutable binding
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/reassignment_immutable_fields.rs:7:5
|
2018-08-14 07:24:44 -05:00
|
|
|
|
|
|
|
|
LL | let x: (u32, u32);
|
2018-09-12 13:13:40 -05:00
|
|
|
| - help: make this binding mutable: `mut x`
|
2018-08-14 07:24:44 -05:00
|
|
|
LL | x.0 = 1; //~ ERROR
|
|
|
|
| ^^^^^^^ cannot mutably borrow field of immutable binding
|
|
|
|
|
|
|
|
error[E0594]: cannot assign to field `x.1` of immutable binding
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/reassignment_immutable_fields.rs:8:5
|
2018-08-14 07:24:44 -05:00
|
|
|
|
|
|
|
|
LL | let x: (u32, u32);
|
2018-09-12 13:13:40 -05:00
|
|
|
| - help: make this binding mutable: `mut x`
|
2018-08-14 07:24:44 -05:00
|
|
|
LL | x.0 = 1; //~ ERROR
|
|
|
|
LL | x.1 = 22; //~ ERROR
|
|
|
|
| ^^^^^^^^ cannot mutably borrow field of immutable binding
|
|
|
|
|
|
|
|
error[E0381]: use of possibly uninitialized variable: `x.0`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/reassignment_immutable_fields.rs:9:10
|
2018-08-14 07:24:44 -05:00
|
|
|
|
|
|
|
|
LL | drop(x.0); //~ ERROR
|
|
|
|
| ^^^ use of possibly uninitialized `x.0`
|
|
|
|
|
|
|
|
error[E0381]: use of possibly uninitialized variable: `x.1`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/reassignment_immutable_fields.rs:10:10
|
2018-08-14 07:24:44 -05:00
|
|
|
|
|
|
|
|
LL | drop(x.1); //~ ERROR
|
|
|
|
| ^^^ use of possibly uninitialized `x.1`
|
|
|
|
|
|
|
|
error[E0594]: cannot assign to field `x.0` of immutable binding
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/reassignment_immutable_fields.rs:15:5
|
2018-08-14 07:24:44 -05:00
|
|
|
|
|
|
|
|
LL | let x: (u32, u32);
|
2018-09-12 13:13:40 -05:00
|
|
|
| - help: make this binding mutable: `mut x`
|
2018-08-14 07:24:44 -05:00
|
|
|
LL | x.0 = 1; //~ ERROR
|
|
|
|
| ^^^^^^^ cannot mutably borrow field of immutable binding
|
|
|
|
|
|
|
|
error[E0594]: cannot assign to field `x.1` of immutable binding
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/reassignment_immutable_fields.rs:16:5
|
2018-08-14 07:24:44 -05:00
|
|
|
|
|
|
|
|
LL | let x: (u32, u32);
|
2018-09-12 13:13:40 -05:00
|
|
|
| - help: make this binding mutable: `mut x`
|
2018-08-14 07:24:44 -05:00
|
|
|
LL | x.0 = 1; //~ ERROR
|
|
|
|
LL | x.1 = 22; //~ ERROR
|
|
|
|
| ^^^^^^^^ cannot mutably borrow field of immutable binding
|
|
|
|
|
|
|
|
error[E0381]: use of possibly uninitialized variable: `x`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/reassignment_immutable_fields.rs:17:10
|
2018-08-14 07:24:44 -05:00
|
|
|
|
|
|
|
|
LL | drop(x); //~ ERROR
|
|
|
|
| ^ use of possibly uninitialized `x`
|
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|
|
|
|
Some errors occurred: E0381, E0594.
|
|
|
|
For more information about an error, try `rustc --explain E0381`.
|