rust-clippy/tests/ui/no_effect.stderr

181 lines
3.5 KiB
Text
Raw Normal View History

error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:98:5
|
2018-12-27 15:57:55 +00:00
LL | 0;
| ^^
|
= note: `-D clippy::no-effect` implied by `-D warnings`
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:99:5
|
2018-12-27 15:57:55 +00:00
LL | s2;
| ^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:100:5
|
2018-12-27 15:57:55 +00:00
LL | Unit;
| ^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:101:5
|
2018-12-27 15:57:55 +00:00
LL | Tuple(0);
| ^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:102:5
|
2018-12-27 15:57:55 +00:00
LL | Struct { field: 0 };
| ^^^^^^^^^^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:103:5
|
2018-12-27 15:57:55 +00:00
LL | Struct { ..s };
| ^^^^^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:104:5
|
2018-12-27 15:57:55 +00:00
LL | Union { a: 0 };
| ^^^^^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:105:5
|
2018-12-27 15:57:55 +00:00
LL | Enum::Tuple(0);
| ^^^^^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:106:5
|
2018-12-27 15:57:55 +00:00
LL | Enum::Struct { field: 0 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:107:5
|
2018-12-27 15:57:55 +00:00
LL | 5 + 6;
| ^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:108:5
|
2018-12-27 15:57:55 +00:00
LL | *&42;
| ^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:109:5
|
2018-12-27 15:57:55 +00:00
LL | &6;
| ^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:110:5
|
2018-12-27 15:57:55 +00:00
LL | (5, 6, 7);
| ^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:111:5
|
2018-12-27 15:57:55 +00:00
LL | ..;
| ^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:112:5
|
2018-12-27 15:57:55 +00:00
LL | 5..;
| ^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:113:5
|
2018-12-27 15:57:55 +00:00
LL | ..5;
| ^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:114:5
|
2018-12-27 15:57:55 +00:00
LL | 5..6;
| ^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:115:5
|
LL | 5..=6;
| ^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:116:5
|
2018-12-27 15:57:55 +00:00
LL | [42, 55];
| ^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:117:5
|
2018-12-27 15:57:55 +00:00
LL | [42, 55][1];
| ^^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:118:5
|
2018-12-27 15:57:55 +00:00
LL | (42, 55).1;
| ^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:119:5
|
2018-12-27 15:57:55 +00:00
LL | [42; 55];
| ^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:120:5
|
2018-12-27 15:57:55 +00:00
LL | [42; 55][13];
| ^^^^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:122:5
|
2018-12-27 15:57:55 +00:00
LL | || x += 5;
| ^^^^^^^^^^
error: statement with no effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:124:5
2018-12-27 15:57:55 +00:00
|
LL | FooString { s: s };
| ^^^^^^^^^^^^^^^^^^^
error: binding to `_` prefixed variable with no side-effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:125:5
|
LL | let _unused = 1;
| ^^^^^^^^^^^^^^^^
|
= note: `-D clippy::no-effect-underscore-binding` implied by `-D warnings`
error: binding to `_` prefixed variable with no side-effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:126:5
|
LL | let _penguin = || println!("Some helpful closure");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: binding to `_` prefixed variable with no side-effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:127:5
|
LL | let _duck = Struct { field: 0 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: binding to `_` prefixed variable with no side-effect
2023-06-06 20:56:57 +00:00
--> $DIR/no_effect.rs:128:5
|
LL | let _cat = [2, 4, 6, 8][2];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 29 previous errors
2018-01-16 16:06:27 +00:00