mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
32 lines
960 B
Text
32 lines
960 B
Text
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> $DIR/borrow_box.rs:6:19
|
|
|
|
|
LL | pub fn test1(foo: &mut Box<bool>) {
|
|
| ^^^^^^^^^^^^^^ help: try: `&mut bool`
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/borrow_box.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::borrowed_box)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> $DIR/borrow_box.rs:11:14
|
|
|
|
|
LL | 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:15:10
|
|
|
|
|
LL | 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:19:17
|
|
|
|
|
LL | fn test4(a: &Box<bool>);
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
|
|
|
error: aborting due to 4 previous errors
|
|
|