rust/src/test/ui/lifetimes/lifetime-errors/liveness-assign-imm-local-notes.stderr

78 lines
2.8 KiB
Plaintext
Raw Normal View History

error[E0384]: cannot assign twice to immutable variable `x` (Ast)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:13:9
|
2018-02-22 18:42:32 -06:00
LL | x = 2;
| ----- first assignment to `x`
2018-02-22 18:42:32 -06:00
LL | x = 3; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error[E0384]: cannot assign twice to immutable variable `x` (Ast)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:25:13
|
2018-02-22 18:42:32 -06:00
LL | x = 2;
| ----- first assignment to `x`
2018-02-22 18:42:32 -06:00
LL | x = 3; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error[E0384]: cannot assign twice to immutable variable `x` (Ast)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:35:13
|
2018-02-22 18:42:32 -06:00
LL | x = 1; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error[E0384]: cannot assign twice to immutable variable `x` (Ast)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:38:13
|
2018-02-22 18:42:32 -06:00
LL | x = 1; //~ ERROR (Ast) [E0384]
| ----- first assignment to `x`
...
2018-02-22 18:42:32 -06:00
LL | x = 2; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error[E0384]: cannot assign twice to immutable variable `x` (Mir)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:13:9
|
LL | let x;
| - help: make this binding mutable: `mut x`
...
2018-02-22 18:42:32 -06:00
LL | x = 2;
| ----- first assignment to `x`
2018-02-22 18:42:32 -06:00
LL | x = 3; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error[E0384]: cannot assign twice to immutable variable `x` (Mir)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:25:13
|
LL | let x;
| - help: make this binding mutable: `mut x`
...
2018-02-22 18:42:32 -06:00
LL | x = 2;
| ----- first assignment to `x`
2018-02-22 18:42:32 -06:00
LL | x = 3; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error[E0384]: cannot assign twice to immutable variable `x` (Mir)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:35:13
|
LL | let x;
| - help: make this binding mutable: `mut x`
...
2018-02-22 18:42:32 -06:00
LL | x = 1; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error[E0384]: cannot assign twice to immutable variable `x` (Mir)
2018-12-25 09:56:47 -06:00
--> $DIR/liveness-assign-imm-local-notes.rs:38:13
|
LL | let x;
| - help: make this binding mutable: `mut x`
...
2018-02-22 18:42:32 -06:00
LL | x = 1; //~ ERROR (Ast) [E0384]
| ----- first assignment to `x`
...
2018-02-22 18:42:32 -06:00
LL | x = 2; //~ ERROR (Ast) [E0384]
| ^^^^^ cannot assign twice to immutable variable
error: aborting due to 8 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0384`.