summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mut/mut-suggestion.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/mut/mut-suggestion.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/mut/mut-suggestion.stderr b/src/test/ui/mut/mut-suggestion.stderr
deleted file mode 100644
index cba284550..000000000
--- a/src/test/ui/mut/mut-suggestion.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0596]: cannot borrow `arg` as mutable, as it is not declared as mutable
- --> $DIR/mut-suggestion.rs:12:5
- |
-LL | fn func(arg: S) {
- | --- help: consider changing this to be mutable: `mut arg`
-...
-LL | arg.mutate();
- | ^^^^^^^^^^^^ cannot borrow as mutable
-
-error[E0596]: cannot borrow `local` as mutable, as it is not declared as mutable
- --> $DIR/mut-suggestion.rs:20:5
- |
-LL | let local = S;
- | ----- help: consider changing this to be mutable: `mut local`
-...
-LL | local.mutate();
- | ^^^^^^^^^^^^^^ cannot borrow as mutable
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0596`.