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.
Propagate region constraints more precisely from closures
- Loading branch information
1 parent
ea613f3
commit 79e8c31
Showing
3 changed files
with
142 additions
and
66 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
40 changes: 40 additions & 0 deletions
40
src/test/ui/nll/closure-requirements/issue-58127-mutliple-requirements.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,40 @@ | ||
// revisions: migrate nll | ||
//[migrate]compile-flags: -Z borrowck=migrate | ||
#![cfg_attr(nll, feature(nll))] | ||
|
||
// compile-pass | ||
|
||
// Test that we propagate region relations from closures precisely when there is | ||
// more than one non-local lower bound. | ||
|
||
// In this case the closure has signature | ||
// |x: &'4 mut (&'5 (&'1 str, &'2 str), &'3 str)| -> .. | ||
// We end up with a `'3: '5` constraint that we can propagate as | ||
// `'3: '1`, `'3: '2`, but previously we approximated it as `'3: 'static`. | ||
|
||
// As an optimization, we primarily propagate bounds for the "representative" | ||
// of each SCC. As such we have these two similar cases where hopefully one | ||
// of them will test the case we want (case2, when this test was added). | ||
mod case1 { | ||
fn f(s: &str) { | ||
g(s, |x| h(x)); | ||
} | ||
|
||
fn g<T, F>(_: T, _: F) | ||
where F: Fn(&mut (&(T, T), T)) {} | ||
|
||
fn h<T>(_: &mut (&(T, T), T)) {} | ||
} | ||
|
||
mod case2 { | ||
fn f(s: &str) { | ||
g(s, |x| h(x)); | ||
} | ||
|
||
fn g<T, F>(_: T, _: F) | ||
where F: Fn(&mut (T, &(T, T))) {} | ||
|
||
fn h<T>(_: &mut (T, &(T, T))) {} | ||
} | ||
|
||
fn main() {} |