mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 08:57:30 +00:00
32 lines
961 B
Text
32 lines
961 B
Text
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> $DIR/borrow_box.rs:19:19
|
|
|
|
|
19 | pub fn test1(foo: &mut Box<bool>) {
|
|
| ^^^^^^^^^^^^^^ help: try: `&mut bool`
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/borrow_box.rs:14:9
|
|
|
|
|
14 | #![deny(clippy::borrowed_box)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> $DIR/borrow_box.rs:24:14
|
|
|
|
|
24 | let foo: &Box<bool>;
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> $DIR/borrow_box.rs:28:10
|
|
|
|
|
28 | foo: &'a Box<bool>
|
|
| ^^^^^^^^^^^^^ help: try: `&'a bool`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> $DIR/borrow_box.rs:32:17
|
|
|
|
|
32 | fn test4(a: &Box<bool>);
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|