rust/tests/ui/borrow_box.stderr

69 lines
2.5 KiB
Text
Raw Normal View History

2017-06-11 05:50:57 +02:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
--> $DIR/borrow_box.rs:21:14
2018-10-06 18:18:06 +02:00
|
LL | let foo: &Box<bool>;
| ^^^^^^^^^^ help: try: `&bool`
2018-10-06 18:18:06 +02:00
|
2020-01-31 20:21:10 +01:00
note: the lint level is defined here
--> $DIR/borrow_box.rs:1:9
2018-10-06 18:18:06 +02:00
|
2018-12-27 16:57:55 +01:00
LL | #![deny(clippy::borrowed_box)]
2018-10-06 18:18:06 +02:00
| ^^^^^^^^^^^^^^^^^^^^
2017-06-11 05:50:57 +02:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
--> $DIR/borrow_box.rs:25:10
2017-06-11 05:50:57 +02:00
|
2018-12-27 16:57:55 +01:00
LL | foo: &'a Box<bool>,
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^^^^ help: try: `&'a bool`
2017-06-11 05:50:57 +02:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
--> $DIR/borrow_box.rs:29:17
|
2018-12-27 16:57:55 +01:00
LL | fn test4(a: &Box<bool>);
2017-07-21 10:40:23 +02:00
| ^^^^^^^^^^ help: try: `&bool`
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
--> $DIR/borrow_box.rs:95: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`
--> $DIR/borrow_box.rs:96: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`
--> $DIR/borrow_box.rs:97: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`
--> $DIR/borrow_box.rs:99: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`
--> $DIR/borrow_box.rs:100: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`
--> $DIR/borrow_box.rs:101: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`
--> $DIR/borrow_box.rs:106:25
|
LL | pub fn test20(_display: &Box<(dyn Display + Send)>) {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `&(dyn Display + Send)`
error: aborting due to 10 previous errors
2018-01-16 17:06:27 +01:00