2017-02-07 20:05:30 +00:00
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:115:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 0;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^
|
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::no-effect` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::no_effect)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:117:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Tuple(0);
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:119:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Struct { field: 0 };
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:121:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Struct { ..s };
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:123:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Union { a: 0 };
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:125:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Enum::Tuple(0);
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:127:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | Enum::Struct { field: 0 };
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:129:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 5 + 6;
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:131:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | *&42;
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:133:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | &6;
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:135:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | (5, 6, 7);
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:137:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | ..;
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:139:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 5..;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:141:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | ..5;
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:143:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | 5..6;
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-08-12 09:16:25 +00:00
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:145:5
|
2021-08-12 09:16:25 +00:00
|
|
|
|
|
|
|
|
LL | 5..=6;
|
|
|
|
| ^^^^^^
|
|
|
|
|
2017-02-07 20:05:30 +00:00
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:147:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | [42, 55];
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:149:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | [42, 55][1];
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:151:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | (42, 55).1;
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:153:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | [42; 55];
|
2018-02-10 20:13:17 +00:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:155:5
|
2018-02-10 20:13:17 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | [42; 55][13];
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:158:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | || x += 5;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2017-10-07 22:32:09 +00:00
|
|
|
error: statement with no effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:161:5
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | FooString { s: s };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2017-10-07 22:32:09 +00:00
|
|
|
|
2021-10-21 11:11:36 +00:00
|
|
|
error: binding to `_` prefixed variable with no side-effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:163:9
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _unused = 1;
|
2024-01-11 06:52:03 +00:00
|
|
|
| ^^^^^^^
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::no-effect-underscore-binding` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::no_effect_underscore_binding)]`
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
error: binding to `_` prefixed variable with no side-effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:166:9
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _penguin = || println!("Some helpful closure");
|
2024-01-11 06:52:03 +00:00
|
|
|
| ^^^^^^^^
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
error: binding to `_` prefixed variable with no side-effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:168:9
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _duck = Struct { field: 0 };
|
2024-01-11 06:52:03 +00:00
|
|
|
| ^^^^^
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
error: binding to `_` prefixed variable with no side-effect
|
2024-05-14 17:22:56 +00:00
|
|
|
--> tests/ui/no_effect.rs:170:9
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _cat = [2, 4, 6, 8][2];
|
2024-01-11 06:52:03 +00:00
|
|
|
| ^^^^
|
2021-10-21 11:11:36 +00:00
|
|
|
|
2024-05-14 17:22:56 +00:00
|
|
|
error: aborting due to 27 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|