Skip to content

Commit

Permalink
Rollup merge of rust-lang#109317 - ehuss:discriminant-link-fix, r=Nil…
Browse files Browse the repository at this point in the history
…strieb

Update links for custom discriminants.

The discriminant documentation was updated in rust-lang/reference#1055 which changed the layout a bit. This updates the links to the updated locations.
  • Loading branch information
Dylan-DPC committed Mar 22, 2023
2 parents b3e6cbb + 572c56c commit 1fc2357
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions compiler/rustc_error_codes/src/error_codes/E0080.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ or causing an integer overflow are two ways to induce this error.

Ensure that the expressions given can be evaluated as the desired integer type.

See the [Custom Discriminants][custom-discriminants] section of the Reference
for more information about setting custom integer types on fieldless enums
using the [`repr` attribute][repr-attribute].
See the [Discriminants] section of the Reference for more information about
setting custom integer types on enums using the [`repr` attribute][repr-attribute].

[custom-discriminants]: https://doc.rust-lang.org/reference/items/enumerations.html#custom-discriminant-values-for-field-less-enumerations
[repr-attribute]: https://doc.rust-lang.org/reference/type-layout.html#reprc-enums
[discriminants]: https://doc.rust-lang.org/reference/items/enumerations.html#discriminants
[repr-attribute]: https://doc.rust-lang.org/reference/type-layout.html#representations

0 comments on commit 1fc2357

Please sign in to comment.