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.
check that the path from which we borrow is readable
The old code incorrectly assumed that the borrow would always generate a loan. In that case, we will check if that loan conflicts with other loans and hence get an error if the path we borrowed is mutably borrowed. But this is not true if we are borrowing the referent of an `&T` reference. Fixes rust-lang#38899.
- Loading branch information
1 parent
373efe8
commit 58365e2
Showing
3 changed files
with
33 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
27 changes: 27 additions & 0 deletions
27
src/test/compile-fail/borrowck/borrowck-reborrow-shared-referent-issue-38899.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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// Test that reborrowing the referent of an `&T` reference is not | ||
// possible if the path we use to reach that reference is itself | ||
// borrowed. Regression test for #38899. | ||
|
||
#![allow(dead_code)] | ||
|
||
pub struct Block<'a> { | ||
current: &'a u8, | ||
unrelated: &'a u8, | ||
} | ||
|
||
fn bump<'a>(mut block: &mut Block<'a>) { | ||
let x = &mut block; | ||
let p: &'a u8 = &*block.current; //~ ERROR E0503 | ||
} | ||
|
||
fn main() {} |