]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/command-line-diagnostics.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / command-line-diagnostics.stderr
index fd7f98ea563ef6b94a4054a6a6d2e18fc054db16..2a45edae32565abfcfb718d4c9db437dbc4e636e 100644 (file)
@@ -1,11 +1,11 @@
 error[E0384]: cannot assign twice to immutable variable `x`
   --> $DIR/command-line-diagnostics.rs:16:5
    |
-15 |     let x = 42;
+LL |     let x = 42;
    |         - first assignment to `x`
-16 |     x = 43;
+LL |     x = 43;
    |     ^^^^^^ cannot assign twice to immutable variable
 
 error: aborting due to previous error
 
-If you want more information on this error, try using "rustc --explain E0384"
+For more information about this error, try `rustc --explain E0384`.