rust/tests/ui/lint/unused/must_use-trait.stderr

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

39 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-11-03 15:08:38 -05:00
error: unused implementer of `Critical` that must be used
--> $DIR/must_use-trait.rs:33:5
2018-11-03 15:08:38 -05:00
|
2019-03-09 06:03:44 -06:00
LL | get_critical();
| ^^^^^^^^^^^^^^
2018-11-03 15:08:38 -05:00
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2018-11-03 15:08:38 -05:00
--> $DIR/must_use-trait.rs:1:9
|
LL | #![deny(unused_must_use)]
| ^^^^^^^^^^^^^^^
error: unused boxed `Critical` trait object that must be used
--> $DIR/must_use-trait.rs:34:5
|
LL | get_boxed_critical();
| ^^^^^^^^^^^^^^^^^^^^
error: unused boxed boxed `Critical` trait object that must be used
--> $DIR/must_use-trait.rs:35:5
|
LL | get_nested_boxed_critical();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: unused boxed `Critical` trait object in tuple element 1 that must be used
--> $DIR/must_use-trait.rs:37:5
|
LL | get_critical_tuple();
| ^^^^^^^^^^^^^^^^^^^^
error: unused implementer of `Critical` in tuple element 2 that must be used
--> $DIR/must_use-trait.rs:37:5
|
LL | get_critical_tuple();
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 5 previous errors
2018-11-03 15:08:38 -05:00