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, 0 insertions, 21 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
deleted file mode 100644
index ca52659c4..000000000
--- a/src/test/ui/regions/regions-reassign-match-bound-pointer.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// 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);
-}