summary refs log tree commit diff
path: root/src/test/ui/borrowck/assign_mutable_fields.nll.stderr
blob: 59af97d9f13db6101307ab788f5a59ffd574b780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0381]: assign to part of possibly uninitialized variable: `x`
  --> $DIR/assign_mutable_fields.rs:19:5
   |
LL |     x.0 = 1;
   |     ^^^^^^^ use of possibly uninitialized `x`

error[E0381]: assign to part of possibly uninitialized variable: `x`
  --> $DIR/assign_mutable_fields.rs:27:5
   |
LL |     x.0 = 1;
   |     ^^^^^^^ use of possibly uninitialized `x`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0381`.