rust/tests/ui/no_effect.stderr
2018-10-28 18:40:29 +01:00

154 lines
2.7 KiB
Text

error: statement with no effect
--> $DIR/no_effect.rs:71:5
|
71 | 0;
| ^^
|
= note: `-D clippy::no-effect` implied by `-D warnings`
error: statement with no effect
--> $DIR/no_effect.rs:72:5
|
72 | s2;
| ^^^
error: statement with no effect
--> $DIR/no_effect.rs:73:5
|
73 | Unit;
| ^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:74:5
|
74 | Tuple(0);
| ^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:75:5
|
75 | Struct { field: 0 };
| ^^^^^^^^^^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:76:5
|
76 | Struct { ..s };
| ^^^^^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:77:5
|
77 | Union { a: 0 };
| ^^^^^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:78:5
|
78 | Enum::Tuple(0);
| ^^^^^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:79:5
|
79 | Enum::Struct { field: 0 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:80:5
|
80 | 5 + 6;
| ^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:81:5
|
81 | *&42;
| ^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:82:5
|
82 | &6;
| ^^^
error: statement with no effect
--> $DIR/no_effect.rs:83:5
|
83 | (5, 6, 7);
| ^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:84:5
|
84 | box 42;
| ^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:85:5
|
85 | ..;
| ^^^
error: statement with no effect
--> $DIR/no_effect.rs:86:5
|
86 | 5..;
| ^^^^
error: statement with no effect
--> $DIR/no_effect.rs:87:5
|
87 | ..5;
| ^^^^
error: statement with no effect
--> $DIR/no_effect.rs:88:5
|
88 | 5..6;
| ^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:90:5
|
90 | [42, 55];
| ^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:91:5
|
91 | [42, 55][1];
| ^^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:92:5
|
92 | (42, 55).1;
| ^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:93:5
|
93 | [42; 55];
| ^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:94:5
|
94 | [42; 55][13];
| ^^^^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:96:5
|
96 | || x += 5;
| ^^^^^^^^^^
error: statement with no effect
--> $DIR/no_effect.rs:98:5
|
98 | FooString { s: s };
| ^^^^^^^^^^^^^^^^^^^
error: aborting due to 25 previous errors