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#94399 - GuillaumeGomez:regression-test-7946…
…5, r=matthiaskrgr Add test for rust-lang#79465 to prevent regression Fixes rust-lang#79465. Like this we will be able to close the issue. r? `@matthiaskrgr`
- Loading branch information
Showing
2 changed files
with
18 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,3 @@ | ||
pub fn f1<T>(x: T::A) {} | ||
//~^ ERROR | ||
//~^^ ERROR |
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[E0220]: associated type `A` not found for `T` | ||
--> $DIR/issue-79465.rs:1:20 | ||
| | ||
LL | pub fn f1<T>(x: T::A) {} | ||
| ^ associated type `A` not found | ||
|
||
error[E0220]: associated type `A` not found for `T` | ||
--> $DIR/issue-79465.rs:1:20 | ||
| | ||
LL | pub fn f1<T>(x: T::A) {} | ||
| ^ associated type `A` not found | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0220`. |