summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-48803.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/issue-48803.stderr')
-rw-r--r--src/test/ui/nll/issue-48803.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/nll/issue-48803.stderr b/src/test/ui/nll/issue-48803.stderr
deleted file mode 100644
index 2f94039c0..000000000
--- a/src/test/ui/nll/issue-48803.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0506]: cannot assign to `x` because it is borrowed
- --> $DIR/issue-48803.rs:10:5
- |
-LL | let y = &x;
- | -- borrow of `x` occurs here
-...
-LL | x = "modified";
- | ^^^^^^^^^^^^^^ assignment to borrowed `x` occurs here
-LL |
-LL | println!("{}", w); // prints "modified"
- | - borrow later used here
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0506`.