Rollup merge of #65205 - GuillaumeGomez:long-err-explanation-E0568, r=estebank
Add long error explanation for E0568 Part of #61137.
This commit is contained in:
commit
7a2bb04eb5
5 changed files with 34 additions and 3 deletions
|
|
@ -18,5 +18,5 @@ LL | auto trait MyTrait { fn foo() {} }
|
|||
|
||||
error: aborting due to 3 previous errors
|
||||
|
||||
Some errors have detailed explanations: E0380, E0567.
|
||||
Some errors have detailed explanations: E0380, E0567, E0568.
|
||||
For more information about an error, try `rustc --explain E0380`.
|
||||
|
|
|
|||
|
|
@ -17,4 +17,5 @@ LL | let (a, b) = copy(NoClone);
|
|||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0277`.
|
||||
Some errors have detailed explanations: E0277, E0568.
|
||||
For more information about an error, try `rustc --explain E0277`.
|
||||
|
|
|
|||
|
|
@ -6,3 +6,4 @@ LL | auto trait Magic : Sized where Option<Self> : Magic {}
|
|||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0568`.
|
||||
|
|
|
|||
|
|
@ -6,3 +6,4 @@ LL | auto trait Magic: Copy {}
|
|||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0568`.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue