rust/tests/ui/lint/unused/must_use-unit.stderr
2023-01-11 09:32:08 +00:00

21 lines
429 B
Plaintext

error: unused return value of `foo` that must be used
--> $DIR/must_use-unit.rs:13:5
|
LL | foo();
| ^^^^^
|
note: the lint level is defined here
--> $DIR/must_use-unit.rs:2:9
|
LL | #![deny(unused_must_use)]
| ^^^^^^^^^^^^^^^
error: unused return value of `bar` that must be used
--> $DIR/must_use-unit.rs:15:5
|
LL | bar();
| ^^^^^
error: aborting due to 2 previous errors