File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,11 @@ error[E0382]: use of moved value: `f`
11
11
--> $DIR/two-phase-nonrecv-autoref.rs:69:11
12
12
|
13
13
LL | fn twice_ten_so<F: FnOnce(i32) -> i32>(f: Box<F>) {
14
- | - consider adding a `Copy` constraint to this type argument
14
+ | - move occurs because `f` has type `std::boxed::Box<F>`, which does not implement the `Copy` trait
15
15
LL | f(f(10));
16
16
| - ^ value used here after move
17
17
| |
18
18
| value moved here
19
- |
20
- = note: move occurs because `f` has type `std::boxed::Box<F>`, which does not implement the `Copy` trait
21
19
22
20
error[E0499]: cannot borrow `*f` as mutable more than once at a time
23
21
--> $DIR/two-phase-nonrecv-autoref.rs:76:11
@@ -31,12 +29,12 @@ LL | f(f(10));
31
29
error[E0382]: use of moved value: `f`
32
30
--> $DIR/two-phase-nonrecv-autoref.rs:85:11
33
31
|
32
+ LL | fn twice_ten_oo(f: Box<FnOnce(i32) -> i32>) {
33
+ | - move occurs because `f` has type `std::boxed::Box<dyn std::ops::FnOnce(i32) -> i32>`, which does not implement the `Copy` trait
34
34
LL | f(f(10));
35
35
| - ^ value used here after move
36
36
| |
37
37
| value moved here
38
- |
39
- = note: move occurs because `f` has type `std::boxed::Box<dyn std::ops::FnOnce(i32) -> i32>`, which does not implement the `Copy` trait
40
38
41
39
error[E0502]: cannot borrow `a` as immutable because it is also borrowed as mutable
42
40
--> $DIR/two-phase-nonrecv-autoref.rs:125:27
You can’t perform that action at this time.
0 commit comments