about summary refs log tree commit diff
path: root/src/test/ui/lifetime-errors/liveness-assign-imm-local-notes.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lifetime-errors/liveness-assign-imm-local-notes.stderr')
-rw-r--r--src/test/ui/lifetime-errors/liveness-assign-imm-local-notes.stderr28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/test/ui/lifetime-errors/liveness-assign-imm-local-notes.stderr b/src/test/ui/lifetime-errors/liveness-assign-imm-local-notes.stderr
index a66c6efe670..8a69514932a 100644
--- a/src/test/ui/lifetime-errors/liveness-assign-imm-local-notes.stderr
+++ b/src/test/ui/lifetime-errors/liveness-assign-imm-local-notes.stderr
@@ -1,63 +1,63 @@
 error[E0384]: cannot assign twice to immutable variable `x` (Ast)
   --> $DIR/liveness-assign-imm-local-notes.rs:23:9
    |
-22 |         x = 2;
+LL |         x = 2;
    |         ----- first assignment to `x`
-23 |         x = 3;      //~ ERROR (Ast) [E0384]
+LL |         x = 3;      //~ ERROR (Ast) [E0384]
    |         ^^^^^ cannot assign twice to immutable variable
 
 error[E0384]: cannot assign twice to immutable variable `x` (Ast)
   --> $DIR/liveness-assign-imm-local-notes.rs:35:13
    |
-34 |             x = 2;
+LL |             x = 2;
    |             ----- first assignment to `x`
-35 |             x = 3;      //~ ERROR (Ast) [E0384]
+LL |             x = 3;      //~ ERROR (Ast) [E0384]
    |             ^^^^^ cannot assign twice to immutable variable
 
 error[E0384]: cannot assign twice to immutable variable `x` (Ast)
   --> $DIR/liveness-assign-imm-local-notes.rs:45:13
    |
-45 |             x = 1;      //~ ERROR (Ast) [E0384]
+LL |             x = 1;      //~ ERROR (Ast) [E0384]
    |             ^^^^^ cannot assign twice to immutable variable
 
 error[E0384]: cannot assign twice to immutable variable `x` (Ast)
   --> $DIR/liveness-assign-imm-local-notes.rs:48:13
    |
-45 |             x = 1;      //~ ERROR (Ast) [E0384]
+LL |             x = 1;      //~ ERROR (Ast) [E0384]
    |             ----- first assignment to `x`
 ...
-48 |             x = 2;      //~ ERROR (Ast) [E0384]
+LL |             x = 2;      //~ ERROR (Ast) [E0384]
    |             ^^^^^ cannot assign twice to immutable variable
 
 error[E0384]: cannot assign twice to immutable variable `x` (Mir)
   --> $DIR/liveness-assign-imm-local-notes.rs:23:9
    |
-22 |         x = 2;
+LL |         x = 2;
    |         ----- first assignment to `x`
-23 |         x = 3;      //~ ERROR (Ast) [E0384]
+LL |         x = 3;      //~ ERROR (Ast) [E0384]
    |         ^^^^^ cannot assign twice to immutable variable
 
 error[E0384]: cannot assign twice to immutable variable `x` (Mir)
   --> $DIR/liveness-assign-imm-local-notes.rs:35:13
    |
-34 |             x = 2;
+LL |             x = 2;
    |             ----- first assignment to `x`
-35 |             x = 3;      //~ ERROR (Ast) [E0384]
+LL |             x = 3;      //~ ERROR (Ast) [E0384]
    |             ^^^^^ cannot assign twice to immutable variable
 
 error[E0384]: cannot assign twice to immutable variable `x` (Mir)
   --> $DIR/liveness-assign-imm-local-notes.rs:45:13
    |
-45 |             x = 1;      //~ ERROR (Ast) [E0384]
+LL |             x = 1;      //~ ERROR (Ast) [E0384]
    |             ^^^^^ cannot assign twice to immutable variable
 
 error[E0384]: cannot assign twice to immutable variable `x` (Mir)
   --> $DIR/liveness-assign-imm-local-notes.rs:48:13
    |
-45 |             x = 1;      //~ ERROR (Ast) [E0384]
+LL |             x = 1;      //~ ERROR (Ast) [E0384]
    |             ----- first assignment to `x`
 ...
-48 |             x = 2;      //~ ERROR (Ast) [E0384]
+LL |             x = 2;      //~ ERROR (Ast) [E0384]
    |             ^^^^^ cannot assign twice to immutable variable
 
 error: aborting due to 8 previous errors