rust/tests/ui/borrow_box.stderr

33 lines
961 B
Plaintext
Raw Normal View History

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