forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
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 rust-lang#94695 - matthiaskrgr:rollup-5pi3acz, r=matthi…
…askrgr Rollup of 4 pull requests Successful merges: - rust-lang#94553 (add tests for rust-lang#94502) - rust-lang#94614 (Remove ordering traits from `rustc_span::hygiene::LocalExpnId`) - rust-lang#94685 (interpret: move saturating_add/sub into (pub) helper method) - rust-lang#94688 (Erase regions when checking for missing Copy predicates) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
7 changed files
with
138 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
pub struct DataStruct(); | ||
|
||
pub struct HelperStruct<'n> { | ||
pub helpers: [Vec<&'n i64>; 2], | ||
pub is_empty: bool, | ||
} | ||
|
||
impl DataStruct { | ||
pub fn f(&self) -> HelperStruct { | ||
let helpers = [vec![], vec![]]; | ||
|
||
HelperStruct { helpers, is_empty: helpers[0].is_empty() } | ||
//~^ ERROR borrow of moved value | ||
} | ||
} | ||
|
||
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,14 @@ | ||
error[E0382]: borrow of moved value: `helpers` | ||
--> $DIR/copy-suggestion-region-vid.rs:12:43 | ||
| | ||
LL | let helpers = [vec![], vec![]]; | ||
| ------- move occurs because `helpers` has type `[Vec<&i64>; 2]`, which does not implement the `Copy` trait | ||
LL | | ||
LL | HelperStruct { helpers, is_empty: helpers[0].is_empty() } | ||
| ------- ^^^^^^^^^^^^^^^^^^^^^ value borrowed here after move | ||
| | | ||
| value moved here | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0382`. |
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,28 @@ | ||
// check-pass | ||
|
||
// mir borrowck previously incorrectly set `tainted_by_errors` | ||
// when buffering lints, which resulted in ICE later on, | ||
// see #94502. | ||
|
||
// Errors with `nll` which is already tested in enough other tests, | ||
// so we ignore it here. | ||
// | ||
// ignore-compare-mode-nll | ||
|
||
struct Repro; | ||
impl Repro { | ||
fn get(&self) -> &i32 { | ||
&3 | ||
} | ||
|
||
fn insert(&mut self, _: i32) {} | ||
} | ||
|
||
fn main() { | ||
let x = &0; | ||
let mut conflict = Repro; | ||
let prev = conflict.get(); | ||
conflict.insert(*prev + *x); | ||
//~^ WARN cannot borrow `conflict` as mutable because it is also borrowed as immutable | ||
//~| WARN this borrowing pattern was not meant to be accepted | ||
} |
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,17 @@ | ||
warning: cannot borrow `conflict` as mutable because it is also borrowed as immutable | ||
--> $DIR/lint-no-err.rs:25:5 | ||
| | ||
LL | let prev = conflict.get(); | ||
| -------------- immutable borrow occurs here | ||
LL | conflict.insert(*prev + *x); | ||
| ^^^^^^^^^^^^^^^^-----^^^^^^ | ||
| | | | ||
| | immutable borrow later used here | ||
| mutable borrow occurs here | ||
| | ||
= note: `#[warn(mutable_borrow_reservation_conflict)]` on by default | ||
= warning: this borrowing pattern was not meant to be accepted, and may become a hard error in the future | ||
= note: for more information, see issue #59159 <https://github.com/rust-lang/rust/issues/59159> | ||
|
||
warning: 1 warning emitted | ||
|