2017-06-11 03:50:57 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/borrow_box.rs:15:19
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
15 | pub fn test1(foo: &mut Box<bool>) {
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^ help: try: `&mut bool`
|
|
|
|
|
|
2017-06-11 03:50:57 +00:00
|
|
|
note: lint level defined here
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/borrow_box.rs:10:9
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
10 | #![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`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/borrow_box.rs:20:14
|
2017-06-11 16:11:20 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
20 | let foo: &Box<bool>;
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2017-06-11 16:11:20 +00:00
|
|
|
|
2017-06-11 03:50:57 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/borrow_box.rs:24:10
|
2017-06-11 03:50:57 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
24 | 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`
|
2018-12-10 05:27:19 +00:00
|
|
|
--> $DIR/borrow_box.rs:28:17
|
2017-06-12 12:44:08 +00:00
|
|
|
|
|
2018-12-10 05:27:19 +00:00
|
|
|
28 | fn test4(a: &Box<bool>);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
2017-06-12 12:44:08 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|