2017-06-10 22:50:57 -05:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:20:14
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2020-04-19 09:49:12 -05:00
|
|
|
LL | let foo: &Box<bool>;
|
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2020-01-31 13:21:10 -06:00
|
|
|
note: the lint level is defined here
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/borrow_box.rs:1:9
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | #![deny(clippy::borrowed_box)]
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-06-10 22:50:57 -05:00
|
|
|
|
2017-06-11 11:11:20 -05:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:24:10
|
2017-06-10 22:50:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | foo: &'a Box<bool>,
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `&'a bool`
|
2017-06-10 22:50:57 -05:00
|
|
|
|
2017-06-12 07:44:08 -05:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:28:17
|
2017-06-12 07:44:08 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn test4(a: &Box<bool>);
|
2017-07-21 03:40:23 -05:00
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2017-06-12 07:44:08 -05:00
|
|
|
|
2020-11-05 07:29:48 -06:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:94:25
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | pub fn test14(_display: &Box<dyn Display>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `&dyn Display`
|
|
|
|
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:95:25
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | pub fn test15(_display: &Box<dyn Display + Send>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(dyn Display + Send)`
|
|
|
|
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:96:29
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | pub fn test16<'a>(_display: &'a Box<dyn Display + 'a>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&'a (dyn Display + 'a)`
|
|
|
|
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:98:25
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | pub fn test17(_display: &Box<impl Display>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: try: `&impl Display`
|
|
|
|
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:99:25
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | pub fn test18(_display: &Box<impl Display + Send>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(impl Display + Send)`
|
|
|
|
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:100:29
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | pub fn test19<'a>(_display: &'a Box<impl Display + 'a>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&'a (impl Display + 'a)`
|
|
|
|
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2022-10-06 02:44:38 -05:00
|
|
|
--> $DIR/borrow_box.rs:105:25
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | pub fn test20(_display: &Box<(dyn Display + Send)>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(dyn Display + Send)`
|
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|