summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closures/2229_closure_analysis/diagnostics/multilevel-path.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/closures/2229_closure_analysis/diagnostics/multilevel-path.stderr')
-rw-r--r--src/test/ui/closures/2229_closure_analysis/diagnostics/multilevel-path.stderr17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/closures/2229_closure_analysis/diagnostics/multilevel-path.stderr b/src/test/ui/closures/2229_closure_analysis/diagnostics/multilevel-path.stderr
deleted file mode 100644
index ac4c9c937..000000000
--- a/src/test/ui/closures/2229_closure_analysis/diagnostics/multilevel-path.stderr
+++ /dev/null
@@ -1,17 +0,0 @@
-error[E0499]: cannot borrow `w.p.x` as mutable more than once at a time
- --> $DIR/multilevel-path.rs:23:14
- |
-LL | let mut c = || {
- | -- first mutable borrow occurs here
-LL | w.p.x += 20;
- | ----- first borrow occurs due to use of `w.p.x` in closure
-...
-LL | let py = &mut w.p.x;
- | ^^^^^^^^^^ second mutable borrow occurs here
-LL |
-LL | c();
- | - first borrow later used here
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0499`.