rust-clippy/tests/ui/borrow_box.stderr

33 lines
934 B
Text
Raw Normal View History

2017-06-11 03:50:57 +00:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
2017-08-01 15:54:21 +00:00
--> $DIR/borrow_box.rs:9:19
2017-06-11 14:49:34 +00:00
|
9 | pub fn test1(foo: &mut Box<bool>) {
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^^ help: try: `&mut bool`
2017-06-11 14:49:34 +00:00
|
2017-06-11 03:50:57 +00:00
note: lint level defined here
2017-08-01 15:54:21 +00:00
--> $DIR/borrow_box.rs:4:9
2017-06-11 14:49:34 +00:00
|
4 | #![deny(borrowed_box)]
| ^^^^^^^^^^^^
2017-06-11 03:50:57 +00:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
2017-08-01 15:54:21 +00:00
--> $DIR/borrow_box.rs:14:14
|
14 | let foo: &Box<bool>;
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^ help: try: `&bool`
2017-06-11 03:50:57 +00:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
2017-08-01 15:54:21 +00:00
--> $DIR/borrow_box.rs:18:10
2017-06-11 03:50:57 +00:00
|
2017-06-11 14:49:34 +00:00
18 | foo: &'a Box<bool>
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^^^^ help: try: `&'a bool`
2017-06-11 03:50:57 +00:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
2017-08-01 15:54:21 +00:00
--> $DIR/borrow_box.rs:22:17
|
22 | fn test4(a: &Box<bool>);
2017-07-21 08:40:23 +00:00
| ^^^^^^^^^^ help: try: `&bool`
2018-01-16 16:06:27 +00:00
error: aborting due to 4 previous errors