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.
Rollup merge of rust-lang#96679 - ricked-twice:issue-96223-fix, r=jac…
…kh726 Quick fix for rust-lang#96223. This PR is a quick fix regarding rust-lang#96223. As mentioned in the issue, others modification could be added to not elide types with bound vars from suggestions. Special thanks to ``@jackh726`` for mentoring and ``@Manishearth`` for minimal test case. r? ``@jackh726``
- Loading branch information
Showing
3 changed files
with
87 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Previously ICEd because we didn't properly track binders in suggestions | ||
// check-fail | ||
|
||
pub trait Foo<'de>: Sized {} | ||
|
||
pub trait Bar<'a>: 'static { | ||
type Inner: 'a; | ||
} | ||
|
||
pub trait Fubar { | ||
type Bar: for<'a> Bar<'a>; | ||
} | ||
|
||
pub struct Baz<T>(pub T); | ||
|
||
impl<'de, T> Foo<'de> for Baz<T> where T: Foo<'de> {} | ||
|
||
struct Empty; | ||
|
||
impl<M> Dummy<M> for Empty | ||
where | ||
M: Fubar, | ||
for<'de> Baz<<M::Bar as Bar<'de>>::Inner>: Foo<'de>, | ||
{ | ||
} | ||
|
||
pub trait Dummy<M> | ||
where | ||
M: Fubar, | ||
{ | ||
} | ||
|
||
pub struct EmptyBis<'a>(&'a [u8]); | ||
|
||
impl<'a> Bar<'a> for EmptyBis<'static> { | ||
type Inner = EmptyBis<'a>; | ||
} | ||
|
||
pub struct EmptyMarker; | ||
|
||
impl Fubar for EmptyMarker { | ||
type Bar = EmptyBis<'static>; | ||
} | ||
|
||
fn icey_bounds<D: Dummy<EmptyMarker>>(p: &D) {} | ||
|
||
fn trigger_ice() { | ||
let p = Empty; | ||
icey_bounds(&p); //~ERROR the trait bound | ||
} | ||
|
||
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,28 @@ | ||
error[E0277]: the trait bound `for<'de> EmptyBis<'de>: Foo<'_>` is not satisfied | ||
--> $DIR/issue-96223.rs:49:17 | ||
| | ||
LL | icey_bounds(&p); | ||
| ----------- ^^ the trait `for<'de> Foo<'_>` is not implemented for `EmptyBis<'de>` | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= help: the trait `Foo<'de>` is implemented for `Baz<T>` | ||
note: required because of the requirements on the impl of `for<'de> Foo<'de>` for `Baz<EmptyBis<'de>>` | ||
--> $DIR/issue-96223.rs:16:14 | ||
| | ||
LL | impl<'de, T> Foo<'de> for Baz<T> where T: Foo<'de> {} | ||
| ^^^^^^^^ ^^^^^^ | ||
note: required because of the requirements on the impl of `Dummy<EmptyMarker>` for `Empty` | ||
--> $DIR/issue-96223.rs:20:9 | ||
| | ||
LL | impl<M> Dummy<M> for Empty | ||
| ^^^^^^^^ ^^^^^ | ||
note: required by a bound in `icey_bounds` | ||
--> $DIR/issue-96223.rs:45:19 | ||
| | ||
LL | fn icey_bounds<D: Dummy<EmptyMarker>>(p: &D) {} | ||
| ^^^^^^^^^^^^^^^^^^ required by this bound in `icey_bounds` | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0277`. |