-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #87566 - JohnTitor:find-eqeq-on-assoc-type-bounds, r=…
…estebank Recover invalid assoc type bounds using `==` Fix #87493 r? `@estebank`
- Loading branch information
Showing
3 changed files
with
55 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,14 @@ | ||
pub trait MyTrait { | ||
type Assoc; | ||
} | ||
|
||
pub fn foo<S, T>(_s: S, _t: T) | ||
where | ||
S: MyTrait, | ||
T: MyTrait<Assoc == S::Assoc>, | ||
//~^ ERROR: expected one of `,` or `>`, found `==` | ||
//~| ERROR: this trait takes 0 generic arguments but 1 generic argument was supplied | ||
{ | ||
} | ||
|
||
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: expected one of `,` or `>`, found `==` | ||
--> $DIR/issue-87493.rs:8:22 | ||
| | ||
LL | T: MyTrait<Assoc == S::Assoc>, | ||
| ^^ expected one of `,` or `>` | ||
| | ||
help: if you meant to use an associated type binding, replace `==` with `=` | ||
| | ||
LL | T: MyTrait<Assoc = S::Assoc>, | ||
| ~ | ||
|
||
error[E0107]: this trait takes 0 generic arguments but 1 generic argument was supplied | ||
--> $DIR/issue-87493.rs:8:8 | ||
| | ||
LL | T: MyTrait<Assoc == S::Assoc>, | ||
| ^^^^^^^------------------- help: remove these generics | ||
| | | ||
| expected 0 generic arguments | ||
| | ||
note: trait defined here, with 0 generic parameters | ||
--> $DIR/issue-87493.rs:1:11 | ||
| | ||
LL | pub trait MyTrait { | ||
| ^^^^^^^ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0107`. |