2017-06-11 03:50:57 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2020-10-20 20:42:00 +00:00
|
|
|
--> $DIR/borrow_box.rs:21:14
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2020-04-19 14:49:12 +00:00
|
|
|
LL | let foo: &Box<bool>;
|
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2020-01-31 19:21:10 +00:00
|
|
|
note: the lint level is defined here
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/borrow_box.rs:1:9
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | #![deny(clippy::borrowed_box)]
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-06-11 03:50:57 +00:00
|
|
|
|
2017-06-11 16:11:20 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2020-10-20 20:42:00 +00:00
|
|
|
--> $DIR/borrow_box.rs:25:10
|
2017-06-11 03:50:57 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | foo: &'a Box<bool>,
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `&'a bool`
|
2017-06-11 03:50:57 +00:00
|
|
|
|
2017-06-12 12:44:08 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2020-10-20 20:42:00 +00:00
|
|
|
--> $DIR/borrow_box.rs:29:17
|
2017-06-12 12:44:08 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn test4(a: &Box<bool>);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2017-06-12 12:44:08 +00:00
|
|
|
|
2020-10-20 20:42:00 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
|
|
--> $DIR/borrow_box.rs:95:25
|
|
|
|
|
|
|
|
|
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`
|
|
|
|
--> $DIR/borrow_box.rs:96:25
|
|
|
|
|
|
|
|
|
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`
|
|
|
|
--> $DIR/borrow_box.rs:97:29
|
|
|
|
|
|
|
|
|
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`
|
|
|
|
--> $DIR/borrow_box.rs:99:25
|
|
|
|
|
|
|
|
|
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`
|
|
|
|
--> $DIR/borrow_box.rs:100:25
|
|
|
|
|
|
|
|
|
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`
|
|
|
|
--> $DIR/borrow_box.rs:101:29
|
|
|
|
|
|
|
|
|
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`
|
|
|
|
--> $DIR/borrow_box.rs:106:25
|
|
|
|
|
|
|
|
|
LL | pub fn test20(_display: &Box<(dyn Display + Send)>) {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(dyn Display + Send)`
|
|
|
|
|
|
|
|
error: aborting due to 10 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|