forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
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#121628 - gurry:121534-ice-asymm-binop, r=oli-obk Do not const prop unions Unions can produce values whose types don't match their underlying layout types which can lead to ICEs on eval. Fixes rust-lang#121534
- Loading branch information
Showing
2 changed files
with
47 additions
and
14 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
21 changes: 21 additions & 0 deletions
21
tests/ui/lint/ice-unions-known-panics-lint-issue-121534.rs
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,21 @@ | ||
// Regression test for #121534 | ||
// Tests that no ICE occurs in KnownPanicsLint when it | ||
// evaluates an operation whose operands have different | ||
// layout types even though they have the same type. | ||
// This situation can be contrived through the use of | ||
// unions as in this test | ||
|
||
//@ build-pass | ||
union Union { | ||
u32_field: u32, | ||
i32_field: i32, | ||
} | ||
|
||
pub fn main() { | ||
let u32_variant = Union { u32_field: 2 }; | ||
let i32_variant = Union { i32_field: 3 }; | ||
let a = unsafe { u32_variant.u32_field }; | ||
let b = unsafe { i32_variant.u32_field }; | ||
|
||
let _diff = a - b; | ||
} |