rust/tests/ui/lint/warn-path-statement.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
528 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error: path statement with no effect
--> $DIR/warn-path-statement.rs:10:5
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | x;
2018-08-08 12:28:26 +00:00
| ^^
|
= note: requested on the command line with `-D path-statements`
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 12:28:26 +00:00