rust-clippy/clippy_tests/examples/shadow.stderr
Georg Brandl 6b6253016f Update stderr files for change in error reporting
rustc now (https://github.com/rust-lang/rust/issues/33525) does not
report an error count anymore, because it was not correct in many cases.
2017-05-26 16:54:07 +02:00

147 lines
3.1 KiB
Text

error: `x` is shadowed by itself in `&mut x`
--> shadow.rs:13:9
|
13 | let x = &mut x;
| ^^^^^^^^^^
|
= note: `-D shadow-same` implied by `-D warnings`
note: previous binding is here
--> shadow.rs:12:13
|
12 | let mut x = 1;
| ^
error: `x` is shadowed by itself in `{ x }`
--> shadow.rs:14:9
|
14 | let x = { x };
| ^^^^^^^^^
|
= note: `-D shadow-same` implied by `-D warnings`
note: previous binding is here
--> shadow.rs:13:9
|
13 | let x = &mut x;
| ^
error: `x` is shadowed by itself in `(&*x)`
--> shadow.rs:15:9
|
15 | let x = (&*x);
| ^^^^^^^^^
|
= note: `-D shadow-same` implied by `-D warnings`
note: previous binding is here
--> shadow.rs:14:9
|
14 | let x = { x };
| ^
error: `x` is shadowed by `{ *x + 1 }` which reuses the original value
--> shadow.rs:16:9
|
16 | let x = { *x + 1 };
| ^
|
= note: `-D shadow-reuse` implied by `-D warnings`
note: initialization happens here
--> shadow.rs:16:13
|
16 | let x = { *x + 1 };
| ^^^^^^^^^^
note: previous binding is here
--> shadow.rs:15:9
|
15 | let x = (&*x);
| ^
error: `x` is shadowed by `id(x)` which reuses the original value
--> shadow.rs:17:9
|
17 | let x = id(x);
| ^
|
= note: `-D shadow-reuse` implied by `-D warnings`
note: initialization happens here
--> shadow.rs:17:13
|
17 | let x = id(x);
| ^^^^^
note: previous binding is here
--> shadow.rs:16:9
|
16 | let x = { *x + 1 };
| ^
error: `x` is shadowed by `(1, x)` which reuses the original value
--> shadow.rs:18:9
|
18 | let x = (1, x);
| ^
|
= note: `-D shadow-reuse` implied by `-D warnings`
note: initialization happens here
--> shadow.rs:18:13
|
18 | let x = (1, x);
| ^^^^^^
note: previous binding is here
--> shadow.rs:17:9
|
17 | let x = id(x);
| ^
error: `x` is shadowed by `first(x)` which reuses the original value
--> shadow.rs:19:9
|
19 | let x = first(x);
| ^
|
= note: `-D shadow-reuse` implied by `-D warnings`
note: initialization happens here
--> shadow.rs:19:13
|
19 | let x = first(x);
| ^^^^^^^^
note: previous binding is here
--> shadow.rs:18:9
|
18 | let x = (1, x);
| ^
error: `x` is shadowed by `y`
--> shadow.rs:21:9
|
21 | let x = y;
| ^
|
= note: `-D shadow-unrelated` implied by `-D warnings`
note: initialization happens here
--> shadow.rs:21:13
|
21 | let x = y;
| ^
note: previous binding is here
--> shadow.rs:19:9
|
19 | let x = first(x);
| ^
error: `x` shadows a previous declaration
--> shadow.rs:23:9
|
23 | let x;
| ^
|
= note: `-D shadow-unrelated` implied by `-D warnings`
note: previous binding is here
--> shadow.rs:21:9
|
21 | let x = y;
| ^
error: aborting due to previous error(s)
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.