rust/src/test/ui/lint/must_use-trait.stderr

15 lines
320 B
Text
Raw Normal View History

2018-11-03 20:08:38 +00:00
error: unused implementer of `Critical` that must be used
--> $DIR/must_use-trait.rs:21:5
|
2019-03-09 15:03:44 +03:00
LL | get_critical();
2018-11-03 20:08:38 +00:00
| ^^^^^^^^^^^^^^^
|
note: lint level defined here
--> $DIR/must_use-trait.rs:1:9
|
LL | #![deny(unused_must_use)]
| ^^^^^^^^^^^^^^^
error: aborting due to previous error