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.
select obligations after
check_casts
Otherwise, we can get into a situation where you have a subtype obligation `#1 <: #2` pending, #1 is constrained by `check_casts`, but #2` is unaffected. Co-authored-by: Niko Matsakis <[email protected]>
- Loading branch information
1 parent
b6e334d
commit e891044
Showing
6 changed files
with
48 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
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,14 @@ | ||
// Regression test for #88118. Used to ICE. | ||
// | ||
// check-pass | ||
|
||
#![feature(capture_disjoint_fields)] | ||
|
||
fn foo<MsU>(handler: impl FnOnce() -> MsU + Clone + 'static) { | ||
Box::new(move |value| { | ||
(|_| handler.clone()())(value); | ||
None | ||
}) as Box<dyn Fn(i32) -> Option<i32>>; | ||
} | ||
|
||
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,8 @@ | ||
// check-pass | ||
fn main() { | ||
let mut schema_all = vec![]; | ||
(0..42).for_each(|_x| match Err(()) as Result<(), _> { | ||
Ok(()) => schema_all.push(()), | ||
Err(_) => (), | ||
}); | ||
} |
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,11 @@ | ||
// check-pass | ||
#![feature(try_reserve)] | ||
|
||
fn main() { | ||
let mut schema_all: (Vec<String>, Vec<String>) = (vec![], vec![]); | ||
|
||
let _c = || match schema_all.0.try_reserve(1) as Result<(), _> { | ||
Ok(()) => (), | ||
Err(_) => (), | ||
}; | ||
} |