mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-21 10:33:27 +00:00
74ebe6e69e
Adds a boolean flag to indicate whether the current type in `check_ty` is in a local declaration, as only the borrowed box lint should consider these types.
29 lines
812 B
Text
29 lines
812 B
Text
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> borrow_box.rs:9:19
|
|
|
|
|
9 | pub fn test1(foo: &mut Box<bool>) {
|
|
| ^^^^^^^^^^^^^^ help: try `&mut bool`
|
|
|
|
|
note: lint level defined here
|
|
--> borrow_box.rs:4:9
|
|
|
|
|
4 | #![deny(borrowed_box)]
|
|
| ^^^^^^^^^^^^
|
|
|
|
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`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> borrow_box.rs:18:10
|
|
|
|
|
18 | foo: &'a Box<bool>
|
|
| ^^^^^^^^^^^^^ help: try `&'a bool`
|
|
|
|
error: aborting due to previous error(s)
|
|
|
|
error: Could not compile `clippy_tests`.
|
|
|
|
To learn more, run the command again with --verbose.
|