summary refs log tree commit diff
path: root/src/test/ui/borrowck/reassignment_immutable_fields.stderr
blob: 74f0217ef8a9923c35758ca7595ef2794bc91074 (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
error[E0594]: cannot assign to field `x.0` of immutable binding
  --> $DIR/reassignment_immutable_fields.rs:7:5
   |
LL |     let x: (u32, u32);
   |         - help: make this binding mutable: `mut x`
LL |     x.0 = 1;
   |     ^^^^^^^ cannot mutably borrow field of immutable binding

error[E0594]: cannot assign to field `x.1` of immutable binding
  --> $DIR/reassignment_immutable_fields.rs:8:5
   |
LL |     let x: (u32, u32);
   |         - help: make this binding mutable: `mut x`
LL |     x.0 = 1;
LL |     x.1 = 22;
   |     ^^^^^^^^ cannot mutably borrow field of immutable binding

error[E0381]: use of possibly uninitialized variable: `x.0`
  --> $DIR/reassignment_immutable_fields.rs:9:10
   |
LL |     drop(x.0);
   |          ^^^ use of possibly uninitialized `x.0`

error[E0381]: use of possibly uninitialized variable: `x.1`
  --> $DIR/reassignment_immutable_fields.rs:10:10
   |
LL |     drop(x.1);
   |          ^^^ use of possibly uninitialized `x.1`

error[E0594]: cannot assign to field `x.0` of immutable binding
  --> $DIR/reassignment_immutable_fields.rs:15:5
   |
LL |     let x: (u32, u32);
   |         - help: make this binding mutable: `mut x`
LL |     x.0 = 1;
   |     ^^^^^^^ cannot mutably borrow field of immutable binding

error[E0594]: cannot assign to field `x.1` of immutable binding
  --> $DIR/reassignment_immutable_fields.rs:16:5
   |
LL |     let x: (u32, u32);
   |         - help: make this binding mutable: `mut x`
LL |     x.0 = 1;
LL |     x.1 = 22;
   |     ^^^^^^^^ cannot mutably borrow field of immutable binding

error[E0381]: use of possibly uninitialized variable: `x`
  --> $DIR/reassignment_immutable_fields.rs:17:10
   |
LL |     drop(x);
   |          ^ 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`.