summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/immutable-arg.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/immutable-arg.stderr')
-rw-r--r--tests/ui/borrowck/immutable-arg.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/borrowck/immutable-arg.stderr b/tests/ui/borrowck/immutable-arg.stderr
new file mode 100644
index 000000000..bddb0633a
--- /dev/null
+++ b/tests/ui/borrowck/immutable-arg.stderr
@@ -0,0 +1,11 @@
+error[E0384]: cannot assign to immutable argument `_x`
+ --> $DIR/immutable-arg.rs:2:5
+ |
+LL | fn foo(_x: u32) {
+ | -- help: consider making this binding mutable: `mut _x`
+LL | _x = 4;
+ | ^^^^^^ cannot assign to immutable argument
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0384`.