Move /src/test to /tests
This commit is contained in:
parent
ca855e6e42
commit
cf2dff2b1e
27592 changed files with 0 additions and 0 deletions
11
tests/mir-opt/dataflow-const-prop/struct.rs
Normal file
11
tests/mir-opt/dataflow-const-prop/struct.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
// 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue