summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-steal-closure.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-steal-closure.stderr')
-rw-r--r--src/test/ui/regions/regions-steal-closure.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/regions/regions-steal-closure.stderr b/src/test/ui/regions/regions-steal-closure.stderr
new file mode 100644
index 000000000..5b0efaf95
--- /dev/null
+++ b/src/test/ui/regions/regions-steal-closure.stderr
@@ -0,0 +1,16 @@
+error[E0597]: `i` does not live long enough
+ --> $DIR/regions-steal-closure.rs:14:28
+ |
+LL | let mut cl_box = {
+ | ---------- borrow later stored here
+LL | let mut i = 3;
+LL | box_it(Box::new(|| i += 1))
+ | -- ^ borrowed value does not live long enough
+ | |
+ | value captured here
+LL | };
+ | - `i` dropped here while still borrowed
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0597`.