summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/region-bound-on-closure-outlives-call.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/region-bound-on-closure-outlives-call.stderr')
-rw-r--r--src/test/ui/regions/region-bound-on-closure-outlives-call.stderr24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/regions/region-bound-on-closure-outlives-call.stderr b/src/test/ui/regions/region-bound-on-closure-outlives-call.stderr
deleted file mode 100644
index ea43dde11..000000000
--- a/src/test/ui/regions/region-bound-on-closure-outlives-call.stderr
+++ /dev/null
@@ -1,24 +0,0 @@
-warning: function cannot return without recursing
- --> $DIR/region-bound-on-closure-outlives-call.rs:1:1
- |
-LL | fn call_rec<F>(mut f: F) -> usize where F: FnMut(usize) -> usize {
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
-LL |
-LL | (|x| f(x))(call_rec(f))
- | ----------- recursive call site
- |
- = help: a `loop` may express intention better if this is on purpose
- = note: `#[warn(unconditional_recursion)]` on by default
-
-error[E0505]: cannot move out of `f` because it is borrowed
- --> $DIR/region-bound-on-closure-outlives-call.rs:3:25
- |
-LL | (|x| f(x))(call_rec(f))
- | --- - ^ move out of `f` occurs here
- | | |
- | | borrow occurs due to use in closure
- | borrow of `f` occurs here
-
-error: aborting due to previous error; 1 warning emitted
-
-For more information about this error, try `rustc --explain E0505`.