diff options
Diffstat (limited to 'src/test/ui/command-line-diagnostics.stderr')
-rw-r--r-- | src/test/ui/command-line-diagnostics.stderr | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/command-line-diagnostics.stderr b/src/test/ui/command-line-diagnostics.stderr new file mode 100644 index 000000000..6223ad880 --- /dev/null +++ b/src/test/ui/command-line-diagnostics.stderr @@ -0,0 +1,14 @@ +error[E0384]: cannot assign twice to immutable variable `x` + --> $DIR/command-line-diagnostics.rs:6:5 + | +LL | let x = 42; + | - + | | + | first assignment to `x` + | help: consider making this binding mutable: `mut x` +LL | x = 43; + | ^^^^^^ cannot assign twice to immutable variable + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0384`. |