mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
291 B
Rust
13 lines
291 B
Rust
// unit-test: DataflowConstProp
|
|
|
|
// The struct has scalar ABI, but is not a scalar type.
|
|
// Make sure that we handle this correctly.
|
|
#[repr(transparent)]
|
|
struct I32(i32);
|
|
|
|
// EMIT_MIR repr_transparent.main.DataflowConstProp.diff
|
|
fn main() {
|
|
let x = I32(0);
|
|
let y = I32(x.0 + x.0);
|
|
}
|