2017-06-11 05:50:57 +02:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/borrow_box.rs:6:19
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | pub fn test1(foo: &mut Box<bool>) {
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^^^ help: try: `&mut bool`
|
|
|
|
|
|
2017-06-11 05:50:57 +02:00
|
|
|
note: lint level defined here
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/borrow_box.rs:1:9
|
2018-10-06 18:18:06 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | #![deny(clippy::borrowed_box)]
|
2018-10-06 18:18:06 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
2017-06-11 05:50:57 +02:00
|
|
|
|
2017-06-11 18:11:20 +02:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/borrow_box.rs:11:14
|
2017-06-11 18:11:20 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | let foo: &Box<bool>;
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2017-06-11 18:11:20 +02:00
|
|
|
|
2017-06-11 05:50:57 +02:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/borrow_box.rs:15:10
|
2017-06-11 05:50:57 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | foo: &'a Box<bool>,
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^^^^^^ help: try: `&'a bool`
|
2017-06-11 05:50:57 +02:00
|
|
|
|
2017-06-12 14:44:08 +02:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2019-01-07 22:33:18 +01:00
|
|
|
--> $DIR/borrow_box.rs:19:17
|
2017-06-12 14:44:08 +02:00
|
|
|
|
|
2018-12-27 16:57:55 +01:00
|
|
|
LL | fn test4(a: &Box<bool>);
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2017-06-12 14:44:08 +02:00
|
|
|
|
2018-01-16 17:06:27 +01:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|