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#91281 - scottmcm:non-exhaustive-as-test, r=…
…Mark-Simulacrum Add demonstration test for rust-lang#91161 Since cross-crate things are hard to demonstrate in playground, here's a test showing that something currently works that shouldn't. cc rust-lang#91161 that tracks fixing the problem (and updating this test)
- Loading branch information
Showing
2 changed files
with
29 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
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,17 @@ | ||
// aux-build:enums.rs | ||
// run-pass | ||
|
||
extern crate enums; | ||
|
||
use enums::FieldLessWithNonExhaustiveVariant; | ||
|
||
fn main() { | ||
let e = FieldLessWithNonExhaustiveVariant::default(); | ||
// FIXME: https://github.com/rust-lang/rust/issues/91161 | ||
// This `as` cast *should* be an error, since it would fail | ||
// if the non-exhaustive variant got fields. But today it | ||
// doesn't. The fix for that will update this test to | ||
// show an error (and not be run-pass any more). | ||
let d = e as u8; | ||
assert_eq!(d, 0); | ||
} |