rust/tests/ui/no_effect.stderr

155 lines
2.7 KiB
Plaintext
Raw Normal View History

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