2019-11-23 12:23:56 -05:00
|
|
|
// compile-flags: -C overflow-checks=on
|
|
|
|
|
|
|
|
struct Point {
|
|
|
|
x: u32,
|
|
|
|
y: u32,
|
|
|
|
}
|
|
|
|
|
2020-04-04 17:15:01 +00:00
|
|
|
// EMIT_MIR rustc.main.ConstProp.diff
|
|
|
|
// EMIT_MIR rustc.main.SimplifyLocals.after.mir
|
2019-11-23 12:23:56 -05:00
|
|
|
fn main() {
|
|
|
|
let x = 2 + 2;
|
|
|
|
let y = [0, 1, 2, 3, 4, 5][3];
|
|
|
|
let z = (Point { x: 12, y: 42}).y;
|
|
|
|
}
|