2018-11-03 15:08:38 -05:00
|
|
|
error: unused implementer of `Critical` that must be used
|
2019-06-29 08:57:12 -05:00
|
|
|
--> $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();
|
2022-08-16 09:46:33 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
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)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
2019-06-29 07:53:46 -05:00
|
|
|
error: unused boxed `Critical` trait object that must be used
|
2019-06-29 08:57:12 -05:00
|
|
|
--> $DIR/must_use-trait.rs:34:5
|
2019-06-29 07:53:46 -05:00
|
|
|
|
|
|
|
|
LL | get_boxed_critical();
|
2022-08-16 09:46:33 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 07:53:46 -05:00
|
|
|
|
2019-06-29 08:57:12 -05: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 09:46:33 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 08:57:12 -05: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 05:30:16 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 08:57:12 -05: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 05:30:16 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2019-06-29 08:57:12 -05:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-11-03 15:08:38 -05:00
|
|
|
|