summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/issue-113087.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/closures/issue-113087.stderr')
-rw-r--r--tests/ui/closures/issue-113087.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/closures/issue-113087.stderr b/tests/ui/closures/issue-113087.stderr
new file mode 100644
index 000000000..8ccef4a54
--- /dev/null
+++ b/tests/ui/closures/issue-113087.stderr
@@ -0,0 +1,16 @@
+error[E0597]: `a` does not live long enough
+ --> $DIR/issue-113087.rs:7:17
+ |
+LL | for a in [1] {
+ | - binding `a` declared here
+LL | some_fn(&a, |c| {
+ | ^^ borrowed value does not live long enough
+LL | some_closure(c);
+ | ------------ borrow later captured here by closure
+LL | });
+LL | }
+ | - `a` dropped here while still borrowed
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0597`.