summary refs log tree commit diff
path: root/src/test/ui/borrowck/borrow-immutable-upvar-mutation.stderr
blob: 17969137a988136d192391a6c80fe4219f5982ed (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
error[E0594]: cannot assign to `x`, as it is a captured variable in a `Fn` closure
  --> $DIR/borrow-immutable-upvar-mutation.rs:15:27
   |
LL |         let _f = to_fn(|| x = 42);
   |                           ^^^^^^ cannot assign
   |
help: consider changing this to accept closures that implement `FnMut`
  --> $DIR/borrow-immutable-upvar-mutation.rs:15:24
   |
LL |         let _f = to_fn(|| x = 42);
   |                        ^^^^^^^^^

error[E0596]: cannot borrow `y` as mutable, as it is a captured variable in a `Fn` closure
  --> $DIR/borrow-immutable-upvar-mutation.rs:18:31
   |
LL |         let _g = to_fn(|| set(&mut y));
   |                               ^^^^^^ cannot borrow as mutable
   |
help: consider changing this to accept closures that implement `FnMut`
  --> $DIR/borrow-immutable-upvar-mutation.rs:18:24
   |
LL |         let _g = to_fn(|| set(&mut y));
   |                        ^^^^^^^^^^^^^^

error[E0594]: cannot assign to `z`, as it is a captured variable in a `Fn` closure
  --> $DIR/borrow-immutable-upvar-mutation.rs:21:55
   |
LL |         let _h = to_fn_mut(|| { set(&mut z); to_fn(|| z = 42); });
   |                                                       ^^^^^^ cannot assign
   |
help: consider changing this to accept closures that implement `FnMut`
  --> $DIR/borrow-immutable-upvar-mutation.rs:21:52
   |
LL |         let _h = to_fn_mut(|| { set(&mut z); to_fn(|| z = 42); });
   |                                                    ^^^^^^^^^

error[E0594]: cannot assign to `x`, as it is a captured variable in a `Fn` closure
  --> $DIR/borrow-immutable-upvar-mutation.rs:27:32
   |
LL |         let _f = to_fn(move || x = 42);
   |                                ^^^^^^ cannot assign
   |
help: consider changing this to accept closures that implement `FnMut`
  --> $DIR/borrow-immutable-upvar-mutation.rs:27:24
   |
LL |         let _f = to_fn(move || x = 42);
   |                        ^^^^^^^^^^^^^^

error[E0596]: cannot borrow `y` as mutable, as it is a captured variable in a `Fn` closure
  --> $DIR/borrow-immutable-upvar-mutation.rs:30:36
   |
LL |         let _g = to_fn(move || set(&mut y));
   |                                    ^^^^^^ cannot borrow as mutable
   |
help: consider changing this to accept closures that implement `FnMut`
  --> $DIR/borrow-immutable-upvar-mutation.rs:30:24
   |
LL |         let _g = to_fn(move || set(&mut y));
   |                        ^^^^^^^^^^^^^^^^^^^

error[E0594]: cannot assign to `z`, as it is a captured variable in a `Fn` closure
  --> $DIR/borrow-immutable-upvar-mutation.rs:33:65
   |
LL |         let _h = to_fn_mut(move || { set(&mut z); to_fn(move || z = 42); });
   |                                                                 ^^^^^^ cannot assign
   |
help: consider changing this to accept closures that implement `FnMut`
  --> $DIR/borrow-immutable-upvar-mutation.rs:33:57
   |
LL |         let _h = to_fn_mut(move || { set(&mut z); to_fn(move || z = 42); });
   |                                                         ^^^^^^^^^^^^^^

error: aborting due to 6 previous errors

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