summaryrefslogtreecommitdiffstats
path: root/src/test/ui/codemap_tests/issue-11715.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/codemap_tests/issue-11715.stderr')
-rw-r--r--src/test/ui/codemap_tests/issue-11715.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/codemap_tests/issue-11715.stderr b/src/test/ui/codemap_tests/issue-11715.stderr
deleted file mode 100644
index a6b2b2e50..000000000
--- a/src/test/ui/codemap_tests/issue-11715.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error[E0499]: cannot borrow `x` as mutable more than once at a time
- --> $DIR/issue-11715.rs:5:13
- |
-LL | let y = &mut x;
- | ------ first mutable borrow occurs here
-LL | let z = &mut x;
- | ^^^^^^ second mutable borrow occurs here
-LL | z.use_mut();
-LL | y.use_mut();
- | ----------- first borrow later used here
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0499`.