summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/dataflow-const-prop/tuple.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/dataflow-const-prop/tuple.rs')
-rw-r--r--src/test/mir-opt/dataflow-const-prop/tuple.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/mir-opt/dataflow-const-prop/tuple.rs b/src/test/mir-opt/dataflow-const-prop/tuple.rs
deleted file mode 100644
index 92c70eab0..000000000
--- a/src/test/mir-opt/dataflow-const-prop/tuple.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// unit-test: DataflowConstProp
-
-// EMIT_MIR tuple.main.DataflowConstProp.diff
-fn main() {
- let mut a = (1, 2);
- let b = a.0 + a.1 + 3;
- a = (2, 3);
- let c = a.0 + a.1 + b;
-}