Skip to content

Commit 1ca1483

Browse files
committedApr 26, 2017
Point at variable moved by closure
1 parent 2bd4b5c commit 1ca1483

7 files changed

+63
-20
lines changed
 

‎src/librustc_borrowck/borrowck/gather_loans/move_error.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
use borrowck::BorrowckCtxt;
1212
use rustc::middle::mem_categorization as mc;
1313
use rustc::middle::mem_categorization::Categorization;
14+
use rustc::middle::mem_categorization::NoteClosureEnv;
1415
use rustc::middle::mem_categorization::InteriorOffsetKind as Kind;
1516
use rustc::ty;
1617
use syntax::ast;
@@ -71,10 +72,12 @@ fn report_move_errors<'a, 'tcx>(bccx: &BorrowckCtxt<'a, 'tcx>,
7172
let mut err = report_cannot_move_out_of(bccx, error.move_from.clone());
7273
let mut is_first_note = true;
7374
for move_to in &error.move_to_places {
74-
err = note_move_destination(err, move_to.span,
75-
move_to.name, is_first_note);
75+
err = note_move_destination(err, move_to.span, move_to.name, is_first_note);
7676
is_first_note = false;
7777
}
78+
if let NoteClosureEnv(upvar_id) = error.move_from.note {
79+
err.span_label(bccx.tcx.hir.span(upvar_id.var_id), &"captured outer variable");
80+
}
7881
err.emit();
7982
}
8083
}

‎src/test/compile-fail/borrowck/borrowck-in-static.rs ‎src/test/ui/borrowck/borrowck-in-static.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// check that borrowck looks inside consts/statics
1212

1313
static FN : &'static (Fn() -> (Box<Fn()->Box<i32>>) + Sync) = &|| {
14-
let x = Box::new(0);
14+
let x = Box::new(0); //~ NOTE moved
1515
Box::new(|| x) //~ ERROR cannot move out of captured outer variable
1616
};
1717

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
2+
--> $DIR/borrowck-in-static.rs:15:17
3+
|
4+
14 | let x = Box::new(0); //~ NOTE moved
5+
| - captured outer variable
6+
15 | Box::new(|| x) //~ ERROR cannot move out of captured outer variable
7+
| ^ cannot move out of captured outer variable in an `Fn` closure
8+
9+
error: aborting due to previous error
10+

‎src/test/compile-fail/unboxed-closures-move-upvar-from-non-once-ref-closure.rs ‎src/test/ui/borrowck/unboxed-closures-move-upvar-from-non-once-ref-closure.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fn call<F>(f: F) where F : Fn() {
1616
}
1717

1818
fn main() {
19-
let y = vec![format!("World")];
19+
let y = vec![format!("World")]; //~ NOTE moved
2020
call(|| {
2121
y.into_iter();
2222
//~^ ERROR cannot move out of captured outer variable in an `Fn` closure
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0507]: cannot move out of captured outer variable in an `Fn` closure
2+
--> $DIR/unboxed-closures-move-upvar-from-non-once-ref-closure.rs:21:9
3+
|
4+
19 | let y = vec![format!("World")]; //~ NOTE moved
5+
| - captured outer variable
6+
20 | call(|| {
7+
21 | y.into_iter();
8+
| ^ cannot move out of captured outer variable in an `Fn` closure
9+
10+
error: aborting due to previous error
11+

‎src/test/ui/span/borrowck-call-is-borrow-issue-12224.rs

+15-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@ struct Test<'a> {
2121
fn call<F>(mut f: F) where F: FnMut(Fn) {
2222
f(Box::new(|| {
2323
//~^ ERROR: cannot borrow `f` as mutable more than once
24+
//~| NOTE first mutable borrow occurs here
25+
//~| NOTE second mutable borrow occurs here
2426
f((Box::new(|| {})))
2527
}));
28+
//~^ NOTE first borrow ends here
2629
}
2730

2831
fn test1() {
@@ -32,15 +35,21 @@ fn test1() {
3235
}
3336

3437
fn test2<F>(f: &F) where F: FnMut() {
35-
(*f)(); //~ ERROR: cannot borrow immutable borrowed content `*f` as mutable
38+
//~^ NOTE use `&mut F` here to make mutable
39+
(*f)();
40+
//~^ ERROR cannot borrow immutable borrowed content `*f` as mutable
41+
//~| NOTE cannot borrow as mutable
3642
}
3743

3844
fn test3<F>(f: &mut F) where F: FnMut() {
3945
(*f)();
4046
}
4147

4248
fn test4(f: &Test) {
43-
f.f.call_mut(()) //~ ERROR: cannot borrow immutable `Box` content `*f.f` as mutable
49+
//~^ NOTE use `&mut Test` here to make mutable
50+
f.f.call_mut(())
51+
//~^ ERROR: cannot borrow immutable `Box` content `*f.f` as mutable
52+
//~| NOTE cannot borrow as mutable
4453
}
4554

4655
fn test5(f: &mut Test) {
@@ -57,10 +66,14 @@ fn test6() {
5766
fn test7() {
5867
fn foo<F>(_: F) where F: FnMut(Box<FnMut(isize)>, isize) {}
5968
let mut f = |g: Box<FnMut(isize)>, b: isize| {};
69+
//~^ NOTE moved
6070
f(Box::new(|a| {
71+
//~^ NOTE borrow of `f` occurs here
6172
foo(f);
6273
//~^ ERROR cannot move `f` into closure because it is borrowed
6374
//~| ERROR cannot move out of captured outer variable in an `FnMut` closure
75+
//~| NOTE move into closure occurs here
76+
//~| NOTE cannot move out of captured outer variable in an `FnMut` closure
6477
}), 3);
6578
}
6679

‎src/test/ui/span/borrowck-call-is-borrow-issue-12224.stderr

+20-14
Original file line numberDiff line numberDiff line change
@@ -5,40 +5,46 @@ error[E0499]: cannot borrow `f` as mutable more than once at a time
55
| - ^^ second mutable borrow occurs here
66
| |
77
| first mutable borrow occurs here
8-
23 | //~^ ERROR: cannot borrow `f` as mutable more than once
9-
24 | f((Box::new(|| {})))
8+
...
9+
26 | f((Box::new(|| {})))
1010
| - borrow occurs due to use of `f` in closure
11-
25 | }));
11+
27 | }));
1212
| - first borrow ends here
1313

1414
error: cannot borrow immutable borrowed content `*f` as mutable
15-
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:35:5
15+
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:39:5
1616
|
17-
34 | fn test2<F>(f: &F) where F: FnMut() {
17+
37 | fn test2<F>(f: &F) where F: FnMut() {
1818
| -- use `&mut F` here to make mutable
19-
35 | (*f)(); //~ ERROR: cannot borrow immutable borrowed content `*f` as mutable
19+
38 | //~^ NOTE use `&mut F` here to make mutable
20+
39 | (*f)();
2021
| ^^^^ cannot borrow as mutable
2122

2223
error: cannot borrow immutable `Box` content `*f.f` as mutable
23-
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:43:5
24+
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:50:5
2425
|
25-
42 | fn test4(f: &Test) {
26+
48 | fn test4(f: &Test) {
2627
| ----- use `&mut Test` here to make mutable
27-
43 | f.f.call_mut(()) //~ ERROR: cannot borrow immutable `Box` content `*f.f` as mutable
28+
49 | //~^ NOTE use `&mut Test` here to make mutable
29+
50 | f.f.call_mut(())
2830
| ^^^ cannot borrow as mutable
2931

3032
error[E0504]: cannot move `f` into closure because it is borrowed
31-
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:61:13
33+
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:72:13
3234
|
33-
60 | f(Box::new(|a| {
35+
70 | f(Box::new(|a| {
3436
| - borrow of `f` occurs here
35-
61 | foo(f);
37+
71 | //~^ NOTE borrow of `f` occurs here
38+
72 | foo(f);
3639
| ^ move into closure occurs here
3740

3841
error[E0507]: cannot move out of captured outer variable in an `FnMut` closure
39-
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:61:13
42+
--> $DIR/borrowck-call-is-borrow-issue-12224.rs:72:13
4043
|
41-
61 | foo(f);
44+
68 | let mut f = |g: Box<FnMut(isize)>, b: isize| {};
45+
| ----- captured outer variable
46+
...
47+
72 | foo(f);
4248
| ^ cannot move out of captured outer variable in an `FnMut` closure
4349

4450
error: aborting due to 5 previous errors

0 commit comments

Comments
 (0)
Please sign in to comment.