about summary refs log tree commit diff
path: root/src/test/mir-opt/dataflow-const-prop/static_ref.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/dataflow-const-prop/static_ref.rs')
-rw-r--r--src/test/mir-opt/dataflow-const-prop/static_ref.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/test/mir-opt/dataflow-const-prop/static_ref.rs b/src/test/mir-opt/dataflow-const-prop/static_ref.rs
deleted file mode 100644
index 90f20ae51ce..00000000000
--- a/src/test/mir-opt/dataflow-const-prop/static_ref.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// unit-test: DataflowConstProp
-// compile-flags: -Zunsound-mir-opts
-
-// EMIT_MIR static_ref.main.DataflowConstProp.diff
-fn main() {
-    // Currently, this will not propagate.
-    static P: i32 = 5;
-    let x = 0;
-    let mut r = &x;
-    r = &P;
-    let y = *r;
-}