rust-clippy/tests/ui/shadow.stderr

139 lines
2.8 KiB
Text
Raw Normal View History

error: `x` is shadowed by itself in `&mut x`
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:13:9
|
2017-02-08 13:58:07 +00:00
13 | let x = &mut x;
| ^^^^^^^^^^
|
= note: `-D shadow-same` implied by `-D warnings`
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:12:13
|
12 | let mut x = 1;
| ^
error: `x` is shadowed by itself in `{ x }`
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:14:9
|
2017-02-08 13:58:07 +00:00
14 | let x = { x };
| ^^^^^^^^^
|
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $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)`
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:15:9
|
2017-02-08 13:58:07 +00:00
15 | let x = (&*x);
| ^^^^^^^^^
|
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $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
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:16:9
|
2017-02-08 13:58:07 +00:00
16 | let x = { *x + 1 };
| ^
|
= note: `-D shadow-reuse` implied by `-D warnings`
note: initialization happens here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:16:13
|
2017-02-08 13:58:07 +00:00
16 | let x = { *x + 1 };
| ^^^^^^^^^^
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $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
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:17:9
|
2017-02-08 13:58:07 +00:00
17 | let x = id(x);
| ^
|
note: initialization happens here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:17:13
|
2017-02-08 13:58:07 +00:00
17 | let x = id(x);
| ^^^^^
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $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
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:18:9
|
2017-02-08 13:58:07 +00:00
18 | let x = (1, x);
| ^
|
note: initialization happens here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:18:13
|
2017-02-08 13:58:07 +00:00
18 | let x = (1, x);
| ^^^^^^
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $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
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:19:9
|
2017-02-08 13:58:07 +00:00
19 | let x = first(x);
| ^
|
note: initialization happens here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:19:13
|
2017-02-08 13:58:07 +00:00
19 | let x = first(x);
| ^^^^^^^^
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:18:9
|
2017-02-08 13:58:07 +00:00
18 | let x = (1, x);
| ^
error: `x` is shadowed by `y`
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:21:9
|
2017-02-08 13:58:07 +00:00
21 | let x = y;
| ^
|
= note: `-D shadow-unrelated` implied by `-D warnings`
note: initialization happens here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:21:13
|
2017-02-08 13:58:07 +00:00
21 | let x = y;
| ^
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:19:9
|
2017-02-08 13:58:07 +00:00
19 | let x = first(x);
| ^
error: `x` shadows a previous declaration
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:23:9
|
2017-02-08 13:58:07 +00:00
23 | let x;
| ^
|
note: previous binding is here
2017-08-01 15:54:21 +00:00
--> $DIR/shadow.rs:21:9
|
2017-02-08 13:58:07 +00:00
21 | let x = y;
| ^
2017-07-03 04:37:30 +00:00
error: aborting due to 9 previous errors