rust-clippy/tests/ui/shadow.stderr

160 lines
3.7 KiB
Text
Raw Normal View History

error: `x` is shadowed by itself in `&mut x`
--> $DIR/shadow.rs:13:9
|
2017-02-08 13:58:07 +00:00
13 | let x = &mut x;
| ^^^^^^^^^^
|
= note: #[deny(shadow_same)] implied by #[deny(clippy_pedantic)]
note: lint level defined here
--> $DIR/shadow.rs:4:17
|
4 | #![deny(clippy, clippy_pedantic)]
| ^^^^^^^^^^^^^^^
note: previous binding is here
--> $DIR/shadow.rs:12:13
|
12 | let mut x = 1;
| ^
error: `x` is shadowed by itself in `{ x }`
--> $DIR/shadow.rs:14:9
|
2017-02-08 13:58:07 +00:00
14 | let x = { x };
| ^^^^^^^^^
|
= note: #[deny(shadow_same)] implied by #[deny(clippy_pedantic)]
note: previous binding is here
--> $DIR/shadow.rs:13:9
|
2017-02-08 13:58:07 +00:00
13 | let x = &mut x;
| ^
error: `x` is shadowed by itself in `(&*x)`
--> $DIR/shadow.rs:15:9
|
2017-02-08 13:58:07 +00:00
15 | let x = (&*x);
| ^^^^^^^^^
|
= note: #[deny(shadow_same)] implied by #[deny(clippy_pedantic)]
note: previous binding is here
--> $DIR/shadow.rs:14:9
|
2017-02-08 13:58:07 +00:00
14 | let x = { x };
| ^
error: `x` is shadowed by `{ *x + 1 }` which reuses the original value
--> $DIR/shadow.rs:16:9
|
2017-02-08 13:58:07 +00:00
16 | let x = { *x + 1 };
| ^
|
= note: #[deny(shadow_reuse)] implied by #[deny(clippy_pedantic)]
note: lint level defined here
--> $DIR/shadow.rs:4:17
|
4 | #![deny(clippy, clippy_pedantic)]
| ^^^^^^^^^^^^^^^
note: initialization happens here
--> $DIR/shadow.rs:16:13
|
2017-02-08 13:58:07 +00:00
16 | let x = { *x + 1 };
| ^^^^^^^^^^
note: previous binding is here
--> $DIR/shadow.rs:15:9
|
2017-02-08 13:58:07 +00:00
15 | let x = (&*x);
| ^
error: `x` is shadowed by `id(x)` which reuses the original value
--> $DIR/shadow.rs:17:9
|
2017-02-08 13:58:07 +00:00
17 | let x = id(x);
| ^
|
= note: #[deny(shadow_reuse)] implied by #[deny(clippy_pedantic)]
note: initialization happens here
--> $DIR/shadow.rs:17:13
|
2017-02-08 13:58:07 +00:00
17 | let x = id(x);
| ^^^^^
note: previous binding is here
--> $DIR/shadow.rs:16:9
|
2017-02-08 13:58:07 +00:00
16 | let x = { *x + 1 };
| ^
error: `x` is shadowed by `(1, x)` which reuses the original value
--> $DIR/shadow.rs:18:9
|
2017-02-08 13:58:07 +00:00
18 | let x = (1, x);
| ^
|
= note: #[deny(shadow_reuse)] implied by #[deny(clippy_pedantic)]
note: initialization happens here
--> $DIR/shadow.rs:18:13
|
2017-02-08 13:58:07 +00:00
18 | let x = (1, x);
| ^^^^^^
note: previous binding is here
--> $DIR/shadow.rs:17:9
|
2017-02-08 13:58:07 +00:00
17 | let x = id(x);
| ^
error: `x` is shadowed by `first(x)` which reuses the original value
--> $DIR/shadow.rs:19:9
|
2017-02-08 13:58:07 +00:00
19 | let x = first(x);
| ^
|
= note: #[deny(shadow_reuse)] implied by #[deny(clippy_pedantic)]
note: initialization happens here
--> $DIR/shadow.rs:19:13
|
2017-02-08 13:58:07 +00:00
19 | let x = first(x);
| ^^^^^^^^
note: previous binding is here
--> $DIR/shadow.rs:18:9
|
2017-02-08 13:58:07 +00:00
18 | let x = (1, x);
| ^
error: `x` is shadowed by `y`
--> $DIR/shadow.rs:21:9
|
2017-02-08 13:58:07 +00:00
21 | let x = y;
| ^
|
= note: #[deny(shadow_unrelated)] implied by #[deny(clippy_pedantic)]
note: lint level defined here
--> $DIR/shadow.rs:4:17
|
4 | #![deny(clippy, clippy_pedantic)]
| ^^^^^^^^^^^^^^^
note: initialization happens here
--> $DIR/shadow.rs:21:13
|
2017-02-08 13:58:07 +00:00
21 | let x = y;
| ^
note: previous binding is here
--> $DIR/shadow.rs:19:9
|
2017-02-08 13:58:07 +00:00
19 | let x = first(x);
| ^
error: `x` shadows a previous declaration
--> $DIR/shadow.rs:23:9
|
2017-02-08 13:58:07 +00:00
23 | let x;
| ^
|
= note: #[deny(shadow_unrelated)] implied by #[deny(clippy_pedantic)]
note: previous binding is here
--> $DIR/shadow.rs:21:9
|
2017-02-08 13:58:07 +00:00
21 | let x = y;
| ^
error: aborting due to 9 previous errors