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.
Rollup merge of rust-lang#64706 - nikomatsakis:issue-60218-test-case,…
… r=centril add regression test for rust-lang#60218 Fixes rust-lang#60218
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Regression test for #60218 | ||
// | ||
// This was reported to cause ICEs. | ||
|
||
use std::iter::Map; | ||
|
||
pub trait Foo {} | ||
|
||
pub fn trigger_error<I, F>(iterable: I, functor: F) | ||
where | ||
for<'t> &'t I: IntoIterator, | ||
for<'t> Map<<&'t I as IntoIterator>::IntoIter, F>: Iterator, | ||
for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo, | ||
{ | ||
} | ||
|
||
fn main() { | ||
trigger_error(vec![], |x: &u32| x) //~ ERROR E0277 | ||
} |
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,15 @@ | ||
error[E0277]: the trait bound `for<'t> <std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item: Foo` is not satisfied | ||
--> $DIR/issue-60218.rs:18:5 | ||
| | ||
LL | pub fn trigger_error<I, F>(iterable: I, functor: F) | ||
| ------------- | ||
... | ||
LL | for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo, | ||
| --- required by this bound in `trigger_error` | ||
... | ||
LL | trigger_error(vec![], |x: &u32| x) | ||
| ^^^^^^^^^^^^^ the trait `for<'t> Foo` is not implemented for `<std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0277`. |