-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #52359 - matthewjasper:combine-move-error-reporting, r=…
…pnkfelix [NLL] Small move error reporting improvements * Use a MirBorrowckContext when reporting errors to be more uniform with other error reporting * Add a special message for the case of trying to move from capture variables in `Fn` and `FnMut` closures. part of #51028
- Loading branch information
Showing
12 changed files
with
101 additions
and
88 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
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
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
4 changes: 2 additions & 2 deletions
4
src/test/ui/borrowck/unboxed-closures-move-upvar-from-non-once-ref-closure.nll.stderr
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,27 @@ | ||
error: internal compiler error: Accessing `(*_8)` with the kind `Write(Move)` shouldn't be possible | ||
error[E0507]: cannot move out of borrowed content | ||
--> $DIR/issue-20801.rs:36:22 | ||
| | ||
LL | let a = unsafe { *mut_ref() }; | ||
| ^^^^^^^^^^ cannot move out of borrowed content | ||
|
||
error[E0507]: cannot move out of borrowed content | ||
--> $DIR/issue-20801.rs:39:22 | ||
| | ||
LL | let b = unsafe { *imm_ref() }; | ||
| ^^^^^^^^^^ cannot move out of borrowed content | ||
|
||
error[E0507]: cannot move out of borrowed content | ||
--> $DIR/issue-20801.rs:42:22 | ||
| | ||
LL | let c = unsafe { *mut_ptr() }; | ||
| ^^^^^^^^^^ cannot move out of borrowed content | ||
|
||
error[E0507]: cannot move out of borrowed content | ||
--> $DIR/issue-20801.rs:45:22 | ||
| | ||
LL | let d = unsafe { *const_ptr() }; | ||
| ^^^^^^^^^^^^ | ||
| ^^^^^^^^^^^^ cannot move out of borrowed content | ||
|
||
error: aborting due to previous error | ||
error: aborting due to 4 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0507`. |
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
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