-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Emit more specific diagnostics when enums fail to cast with
as
- Loading branch information
Showing
5 changed files
with
110 additions
and
4 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
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,46 @@ | ||
// Tests that `as` casts from enums to numeric types succeed | ||
// only if the enum type is "unit-only" or "fieldless" as | ||
// described here: https://doc.rust-lang.org/reference/items/enumerations.html#casting | ||
|
||
pub enum UnitOnly { | ||
Foo, | ||
Bar, | ||
Baz, | ||
} | ||
|
||
pub enum Fieldless { | ||
Tuple(), | ||
Struct{}, | ||
Unit, | ||
} | ||
|
||
pub enum NotUnitOnlyOrFieldless { | ||
Foo, | ||
Bar(u8), | ||
Baz | ||
} | ||
|
||
fn main() { | ||
let unit_only = UnitOnly::Foo; | ||
|
||
let _ = unit_only as isize; | ||
let _ = unit_only as i32; | ||
let _ = unit_only as usize; | ||
let _ = unit_only as u32; | ||
|
||
|
||
let fieldless = Fieldless::Struct{}; | ||
|
||
let _ = fieldless as isize; | ||
let _ = fieldless as i32; | ||
let _ = fieldless as usize; | ||
let _ = fieldless as u32; | ||
|
||
|
||
let not_unit_only_or_fieldless = NotUnitOnlyOrFieldless::Foo; | ||
|
||
let _ = not_unit_only_or_fieldless as isize; //~ ERROR non-primitive cast: `NotUnitOnlyOrFieldless` as `isize` | ||
let _ = not_unit_only_or_fieldless as i32; //~ ERROR non-primitive cast: `NotUnitOnlyOrFieldless` as `i32` | ||
let _ = not_unit_only_or_fieldless as usize; //~ ERROR non-primitive cast: `NotUnitOnlyOrFieldless` as `usize` | ||
let _ = not_unit_only_or_fieldless as u32; //~ ERROR non-primitive cast: `NotUnitOnlyOrFieldless` as `u32` | ||
} |
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,35 @@ | ||
error[E0605]: non-primitive cast: `NotUnitOnlyOrFieldless` as `isize` | ||
--> $DIR/enum-to-numeric-cast.rs:42:13 | ||
| | ||
LL | let _ = not_unit_only_or_fieldless as isize; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ an `as` expression can be used to convert enum types to numeric types only if the enum type is unit-only or field-less | ||
| | ||
= note: see https://doc.rust-lang.org/reference/items/enumerations.html#casting for more information | ||
|
||
error[E0605]: non-primitive cast: `NotUnitOnlyOrFieldless` as `i32` | ||
--> $DIR/enum-to-numeric-cast.rs:43:13 | ||
| | ||
LL | let _ = not_unit_only_or_fieldless as i32; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ an `as` expression can be used to convert enum types to numeric types only if the enum type is unit-only or field-less | ||
| | ||
= note: see https://doc.rust-lang.org/reference/items/enumerations.html#casting for more information | ||
|
||
error[E0605]: non-primitive cast: `NotUnitOnlyOrFieldless` as `usize` | ||
--> $DIR/enum-to-numeric-cast.rs:44:13 | ||
| | ||
LL | let _ = not_unit_only_or_fieldless as usize; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ an `as` expression can be used to convert enum types to numeric types only if the enum type is unit-only or field-less | ||
| | ||
= note: see https://doc.rust-lang.org/reference/items/enumerations.html#casting for more information | ||
|
||
error[E0605]: non-primitive cast: `NotUnitOnlyOrFieldless` as `u32` | ||
--> $DIR/enum-to-numeric-cast.rs:45:13 | ||
| | ||
LL | let _ = not_unit_only_or_fieldless as u32; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ an `as` expression can be used to convert enum types to numeric types only if the enum type is unit-only or field-less | ||
| | ||
= note: see https://doc.rust-lang.org/reference/items/enumerations.html#casting for more information | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0605`. |
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