summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-reassign-let-bound-pointer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-reassign-let-bound-pointer.rs')
-rw-r--r--src/test/ui/regions/regions-reassign-let-bound-pointer.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/test/ui/regions/regions-reassign-let-bound-pointer.rs b/src/test/ui/regions/regions-reassign-let-bound-pointer.rs
deleted file mode 100644
index 948b11e0f..000000000
--- a/src/test/ui/regions/regions-reassign-let-bound-pointer.rs
+++ /dev/null
@@ -1,18 +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;
- let mut z = x;
- z = &a;
-}
-
-pub fn main() {
- foo(&1);
-}