2017-06-11 05:50:57 +02:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/borrow_box.rs:9:19
|
2017-06-11 16:49:34 +02:00
|
|
|
|
|
|
|
|
9 | pub fn test1(foo: &mut Box<bool>) {
|
2017-07-21 10:40:23 +02:00
|
|
|
| ^^^^^^^^^^^^^^ help: try: `&mut bool`
|
2017-06-11 16:49:34 +02:00
|
|
|
|
|
2017-06-11 05:50:57 +02:00
|
|
|
note: lint level defined here
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/borrow_box.rs:4:9
|
2017-06-11 16:49:34 +02:00
|
|
|
|
|
|
|
|
4 | #![deny(borrowed_box)]
|
|
|
|
| ^^^^^^^^^^^^
|
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`
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/borrow_box.rs:14:14
|
2017-06-11 18:11:20 +02:00
|
|
|
|
|
|
|
|
14 | 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`
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/borrow_box.rs:18:10
|
2017-06-11 05:50:57 +02:00
|
|
|
|
|
2017-06-11 16:49:34 +02:00
|
|
|
18 | 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`
|
2017-08-01 17:54:21 +02:00
|
|
|
--> $DIR/borrow_box.rs:22:17
|
2017-06-12 14:44:08 +02:00
|
|
|
|
|
|
|
|
22 | 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
|
|
|
|
|