-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make reborrow shallow, and fix tests for that
- Loading branch information
Showing
6 changed files
with
23 additions
and
54 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
11 changes: 8 additions & 3 deletions
11
tests/compile-fail/stacked_borrows/return_invalid_mut_option.rs
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,11 +1,16 @@ | ||
// Make sure that we cannot return a `&mut` that got already invalidated, not even in an `Option`. | ||
// Due to shallow reborrowing, the error only surfaces when we look into the `Option`. | ||
fn foo(x: &mut (i32, i32)) -> Option<&mut i32> { | ||
let xraw = x as *mut (i32, i32); | ||
let ret = Some(unsafe { &mut (*xraw).1 }); | ||
let ret = unsafe { &mut (*xraw).1 }; // let-bind to avoid 2phase | ||
let ret = Some(ret); | ||
let _val = unsafe { *xraw }; // invalidate xref | ||
ret //~ ERROR borrow stack | ||
ret | ||
} | ||
|
||
fn main() { | ||
foo(&mut (1, 2)); | ||
match foo(&mut (1, 2)) { | ||
Some(_x) => {}, //~ ERROR borrow stack | ||
None => {}, | ||
} | ||
} |
5 changes: 3 additions & 2 deletions
5
tests/compile-fail/stacked_borrows/return_invalid_mut_tuple.rs
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,11 +1,12 @@ | ||
// Make sure that we cannot return a `&mut` that got already invalidated, not even in a tuple. | ||
// Due to shallow reborrowing, the error only surfaces when we look into the tuple. | ||
fn foo(x: &mut (i32, i32)) -> (&mut i32,) { | ||
let xraw = x as *mut (i32, i32); | ||
let ret = (unsafe { &mut (*xraw).1 },); | ||
let _val = unsafe { *xraw }; // invalidate xref | ||
ret //~ ERROR borrow stack | ||
ret | ||
} | ||
|
||
fn main() { | ||
foo(&mut (1, 2)); | ||
foo(&mut (1, 2)).0; //~ ERROR: borrow stack | ||
} |
8 changes: 6 additions & 2 deletions
8
tests/compile-fail/stacked_borrows/return_invalid_shr_option.rs
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,11 +1,15 @@ | ||
// Make sure that we cannot return a `&` that got already invalidated, not even in an `Option`. | ||
// Due to shallow reborrowing, the error only surfaces when we look into the `Option`. | ||
fn foo(x: &mut (i32, i32)) -> Option<&i32> { | ||
let xraw = x as *mut (i32, i32); | ||
let ret = Some(unsafe { &(*xraw).1 }); | ||
unsafe { *xraw = (42, 23) }; // unfreeze | ||
ret //~ ERROR borrow stack | ||
ret | ||
} | ||
|
||
fn main() { | ||
foo(&mut (1, 2)); | ||
match foo(&mut (1, 2)) { | ||
Some(_x) => {}, //~ ERROR borrow stack | ||
None => {}, | ||
} | ||
} |
5 changes: 3 additions & 2 deletions
5
tests/compile-fail/stacked_borrows/return_invalid_shr_tuple.rs
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,11 +1,12 @@ | ||
// Make sure that we cannot return a `&` that got already invalidated, not even in a tuple. | ||
// Due to shallow reborrowing, the error only surfaces when we look into the tuple. | ||
fn foo(x: &mut (i32, i32)) -> (&i32,) { | ||
let xraw = x as *mut (i32, i32); | ||
let ret = (unsafe { &(*xraw).1 },); | ||
unsafe { *xraw = (42, 23) }; // unfreeze | ||
ret //~ ERROR borrow stack | ||
ret | ||
} | ||
|
||
fn main() { | ||
foo(&mut (1, 2)); | ||
foo(&mut (1, 2)).0; //~ ERROR borrow stack | ||
} |