Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add long error explanation for E0576 #65390

Merged
merged 2 commits into from
Oct 25, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/test/ui/issues/issue-19883.stderr
Original file line number Diff line number Diff line change
@@ -6,3 +6,4 @@ LL | <Dst as From<Self>>::Dst

error: aborting due to previous error

For more information about this error, try `rustc --explain E0576`.
1 change: 1 addition & 0 deletions src/test/ui/issues/issue-22037.stderr
Original file line number Diff line number Diff line change
@@ -6,3 +6,4 @@ LL | fn a(&self) -> <Self as A>::X;

error: aborting due to previous error

For more information about this error, try `rustc --explain E0576`.
1 change: 1 addition & 0 deletions src/test/ui/issues/issue-22384.stderr
Original file line number Diff line number Diff line change
@@ -6,3 +6,4 @@ LL | <<i32 as Copy>::foobar as Trait>::foo();

error: aborting due to previous error

For more information about this error, try `rustc --explain E0576`.
2 changes: 1 addition & 1 deletion src/test/ui/type/type-path-err-node-types.stderr
Original file line number Diff line number Diff line change
@@ -30,5 +30,5 @@ LL | let _ = |a, b: _| -> _ { 0 };

error: aborting due to 5 previous errors

Some errors have detailed explanations: E0282, E0412, E0425, E0433.
Some errors have detailed explanations: E0282, E0412, E0425, E0433, E0576.
For more information about an error, try `rustc --explain E0282`.
2 changes: 1 addition & 1 deletion src/test/ui/ufcs/ufcs-partially-resolved.stderr
Original file line number Diff line number Diff line change
@@ -200,5 +200,5 @@ LL | <u8 as Dr>::X::N;

error: aborting due to 32 previous errors

Some errors have detailed explanations: E0223, E0433, E0575, E0599.
Some errors have detailed explanations: E0223, E0433, E0575, E0576, E0599.
For more information about an error, try `rustc --explain E0223`.