2018-08-08 07:28:26 -05:00
|
|
|
error: path statement with no effect
|
2020-08-02 09:30:09 -05:00
|
|
|
--> $DIR/warn-path-statement.rs:10:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | x;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^
|
|
|
|
|
|
|
|
|
= note: requested on the command line with `-D path-statements`
|
|
|
|
|
2020-08-02 09:30:09 -05:00
|
|
|
error: path statement drops value
|
|
|
|
--> $DIR/warn-path-statement.rs:13:5
|
|
|
|
|
|
|
|
|
LL | y;
|
|
|
|
| ^^ help: use `drop` to clarify the intent: `drop(y);`
|
|
|
|
|
|
|
|
error: path statement drops value
|
|
|
|
--> $DIR/warn-path-statement.rs:16:5
|
|
|
|
|
|
|
|
|
LL | z;
|
|
|
|
| ^^ help: use `drop` to clarify the intent: `drop(z);`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|