blob: 751b0512d9d11a60644d7b1d46800cc02c32ae2a [file] [edit]
error: statement with no effect
--> tests/ui/no_effect.rs:120:5
|
LL | 0;
| ^^
|
= note: `-D clippy::no-effect` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::no_effect)]`
error: statement with no effect
--> tests/ui/no_effect.rs:123:5
|
LL | Tuple(0);
| ^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:126:5
|
LL | Struct { field: 0 };
| ^^^^^^^^^^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:129:5
|
LL | Struct { ..s };
| ^^^^^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:132:5
|
LL | Union { a: 0 };
| ^^^^^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:135:5
|
LL | Enum::Tuple(0);
| ^^^^^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:138:5
|
LL | Enum::Struct { field: 0 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:141:5
|
LL | 5 + 6;
| ^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:144:5
|
LL | *&42;
| ^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:147:5
|
LL | &6;
| ^^^
error: statement with no effect
--> tests/ui/no_effect.rs:150:5
|
LL | (5, 6, 7);
| ^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:153:5
|
LL | ..;
| ^^^
error: statement with no effect
--> tests/ui/no_effect.rs:156:5
|
LL | 5..;
| ^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:159:5
|
LL | ..5;
| ^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:162:5
|
LL | 5..6;
| ^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:165:5
|
LL | 5..=6;
| ^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:168:5
|
LL | [42, 55];
| ^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:171:5
|
LL | [42, 55][1];
| ^^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:174:5
|
LL | (42, 55).1;
| ^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:177:5
|
LL | [42; 55];
| ^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:180:5
|
LL | [42; 55][13];
| ^^^^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:184:5
|
LL | || x += 5;
| ^^^^^^^^^^
error: statement with no effect
--> tests/ui/no_effect.rs:188:5
|
LL | FooString { s: s };
| ^^^^^^^^^^^^^^^^^^^
error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect.rs:191:9
|
LL | let _unused = 1;
| ^^^^^^^
|
= note: `-D clippy::no-effect-underscore-binding` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::no_effect_underscore_binding)]`
error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect.rs:194:9
|
LL | let _penguin = || println!("Some helpful closure");
| ^^^^^^^^
error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect.rs:197:9
|
LL | let _duck = Struct { field: 0 };
| ^^^^^
error: binding to `_` prefixed variable with no side-effect
--> tests/ui/no_effect.rs:200:9
|
LL | let _cat = [2, 4, 6, 8][2];
| ^^^^
error: aborting due to 27 previous errors