mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
68 lines
2.5 KiB
Text
68 lines
2.5 KiB
Text
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:25:14
|
|
|
|
|
LL | let foo: &Box<bool>;
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
|
|
|
|
note: the lint level is defined here
|
|
--> tests/ui/borrow_box.rs:1:9
|
|
|
|
|
LL | #![deny(clippy::borrowed_box)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:30:10
|
|
|
|
|
LL | foo: &'a Box<bool>,
|
|
| ^^^^^^^^^^^^^ help: try: `&'a bool`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:35:17
|
|
|
|
|
LL | fn test4(a: &Box<bool>);
|
|
| ^^^^^^^^^^ help: try: `&bool`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:102:25
|
|
|
|
|
LL | pub fn test14(_display: &Box<dyn Display>) {}
|
|
| ^^^^^^^^^^^^^^^^^ help: try: `&dyn Display`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:104:25
|
|
|
|
|
LL | pub fn test15(_display: &Box<dyn Display + Send>) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(dyn Display + Send)`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:106:29
|
|
|
|
|
LL | pub fn test16<'a>(_display: &'a Box<dyn Display + 'a>) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&'a (dyn Display + 'a)`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:109:25
|
|
|
|
|
LL | pub fn test17(_display: &Box<impl Display>) {}
|
|
| ^^^^^^^^^^^^^^^^^^ help: try: `&impl Display`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:111:25
|
|
|
|
|
LL | pub fn test18(_display: &Box<impl Display + Send>) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(impl Display + Send)`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:113:29
|
|
|
|
|
LL | pub fn test19<'a>(_display: &'a Box<impl Display + 'a>) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&'a (impl Display + 'a)`
|
|
|
|
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
|
|
--> tests/ui/borrow_box.rs:119:25
|
|
|
|
|
LL | pub fn test20(_display: &Box<(dyn Display + Send)>) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(dyn Display + Send)`
|
|
|
|
error: aborting due to 10 previous errors
|
|
|