summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/simplify-locals-removes-unused-consts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/simplify-locals-removes-unused-consts.rs')
-rw-r--r--src/test/mir-opt/simplify-locals-removes-unused-consts.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/mir-opt/simplify-locals-removes-unused-consts.rs b/src/test/mir-opt/simplify-locals-removes-unused-consts.rs
new file mode 100644
index 000000000..179994544
--- /dev/null
+++ b/src/test/mir-opt/simplify-locals-removes-unused-consts.rs
@@ -0,0 +1,17 @@
+// compile-flags: -C overflow-checks=no
+
+fn use_zst(_: ((), ())) {}
+
+struct Temp {
+ x: u8,
+}
+
+fn use_u8(_: u8) {}
+
+// EMIT_MIR simplify_locals_removes_unused_consts.main.SimplifyLocals.diff
+fn main() {
+ let ((), ()) = ((), ());
+ use_zst(((), ()));
+
+ use_u8((Temp { x: 40 }).x + 2);
+}