summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-reassign-match-bound-pointer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-reassign-match-bound-pointer.rs')
-rw-r--r--src/test/ui/regions/regions-reassign-match-bound-pointer.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/ui/regions/regions-reassign-match-bound-pointer.rs b/src/test/ui/regions/regions-reassign-match-bound-pointer.rs
new file mode 100644
index 000000000..ca52659c4
--- /dev/null
+++ b/src/test/ui/regions/regions-reassign-match-bound-pointer.rs
@@ -0,0 +1,21 @@
+// run-pass
+#![allow(unused_assignments)]
+#![allow(unused_variables)]
+// Check that the type checker permits us to reassign `z` which
+// started out with a longer lifetime and was reassigned to a shorter
+// one (it should infer to be the intersection).
+
+// pretty-expanded FIXME #23616
+
+fn foo(x: &isize) {
+ let a = 1;
+ match x {
+ mut z => {
+ z = &a;
+ }
+ }
+}
+
+pub fn main() {
+ foo(&1);
+}