2017-06-11 03:50:57 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2017-06-11 14:49:34 +00:00
|
|
|
--> borrow_box.rs:9:19
|
|
|
|
|
|
|
|
|
9 | pub fn test1(foo: &mut Box<bool>) {
|
|
|
|
| ^^^^^^^^^^^^^^ help: try `&mut bool`
|
|
|
|
|
|
2017-06-11 03:50:57 +00:00
|
|
|
note: lint level defined here
|
2017-06-11 14:49:34 +00:00
|
|
|
--> borrow_box.rs:4:9
|
|
|
|
|
|
|
|
|
4 | #![deny(borrowed_box)]
|
|
|
|
| ^^^^^^^^^^^^
|
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`
|
|
|
|
--> borrow_box.rs:14:14
|
|
|
|
|
|
|
|
|
14 | let foo: &Box<bool>;
|
|
|
|
| ^^^^^^^^^^ help: try `&bool`
|
|
|
|
|
2017-06-11 03:50:57 +00:00
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
2017-06-11 14:49:34 +00:00
|
|
|
--> borrow_box.rs:18:10
|
2017-06-11 03:50:57 +00:00
|
|
|
|
|
2017-06-11 14:49:34 +00:00
|
|
|
18 | foo: &'a Box<bool>
|
|
|
|
| ^^^^^^^^^^^^^ help: try `&'a bool`
|
2017-06-11 03:50:57 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|