2018-11-03 20:08:38 +00:00
|
|
|
error: unused implementer of `Critical` that must be used
|
2019-06-29 14:57:12 +01:00
|
|
|
--> $DIR/must_use-trait.rs:33:5
|
2018-11-03 20:08:38 +00:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | get_critical();
|
2022-08-16 07:46:33 -07:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-11-03 20:08:38 +00:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-11-03 20:08:38 +00:00
|
|
|
--> $DIR/must_use-trait.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(unused_must_use)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2019-06-29 13:53:46 +01:00
|
|
|
error: unused boxed `Critical` trait object that must be used
|
2019-06-29 14:57:12 +01:00
|
|
|
--> $DIR/must_use-trait.rs:34:5
|
2019-06-29 13:53:46 +01:00
|
|
|
|
|
|
|
|
LL | get_boxed_critical();
|
2022-08-16 07:46:33 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 13:53:46 +01:00
|
|
|
|
2019-06-29 14:57:12 +01:00
|
|
|
error: unused boxed boxed `Critical` trait object that must be used
|
|
|
|
--> $DIR/must_use-trait.rs:35:5
|
|
|
|
|
|
|
|
|
LL | get_nested_boxed_critical();
|
2022-08-16 07:46:33 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 14:57:12 +01:00
|
|
|
|
|
|
|
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();
|
2022-02-25 11:30:16 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 14:57:12 +01:00
|
|
|
|
|
|
|
error: unused implementer of `Critical` in tuple element 2 that must be used
|
|
|
|
--> $DIR/must_use-trait.rs:37:5
|
|
|
|
|
|
|
|
|
LL | get_critical_tuple();
|
2022-02-25 11:30:16 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 14:57:12 +01:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-11-03 20:08:38 +00:00
|
|
|
|