forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#67247 - JohnTitor:fix-sugg, r=estebank
Don't suggest wrong snippet in closure Fixes rust-lang#67190 r? @estebank
- Loading branch information
Showing
3 changed files
with
46 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
struct NotCopyable; | ||
|
||
fn func<F: FnMut() -> H, H: FnMut()>(_: F) {} | ||
|
||
fn parse() { | ||
let mut var = None; | ||
func(|| { | ||
// Shouldn't suggest `move ||.as_ref()` here | ||
move || { | ||
//~^ ERROR: cannot move out of `var` | ||
var = Some(NotCopyable); | ||
} | ||
}); | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
error[E0507]: cannot move out of `var`, a captured variable in an `FnMut` closure | ||
--> $DIR/option-content-move2.rs:9:9 | ||
| | ||
LL | let mut var = None; | ||
| ------- captured outer variable | ||
... | ||
LL | move || { | ||
| ^^^^^^^ move out of `var` occurs here | ||
LL | | ||
LL | var = Some(NotCopyable); | ||
| --- | ||
| | | ||
| move occurs because `var` has type `std::option::Option<NotCopyable>`, which does not implement the `Copy` trait | ||
| move occurs due to use in closure | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0507`. |