mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
12 lines
187 B
Rust
12 lines
187 B
Rust
// unit-test: DataflowConstProp
|
|
|
|
struct S(i32);
|
|
|
|
// EMIT_MIR struct.main.DataflowConstProp.diff
|
|
fn main() {
|
|
let mut s = S(1);
|
|
let a = s.0 + 2;
|
|
s.0 = 3;
|
|
let b = a + s.0;
|
|
}
|