rust/tests/ui/borrow_box.stderr

31 lines
892 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`
2017-08-01 10:54:21 -05:00
--> $DIR/borrow_box.rs:9:19
2017-06-11 09:49:34 -05:00
|
9 | pub fn test1(foo: &mut Box<bool>) {
2017-07-21 03:40:23 -05:00
| ^^^^^^^^^^^^^^ help: try: `&mut bool`
2017-06-11 09:49:34 -05:00
|
2017-06-10 22:50:57 -05:00
note: lint level defined here
2017-08-01 10:54:21 -05:00
--> $DIR/borrow_box.rs:4:9
2017-06-11 09:49:34 -05:00
|
4 | #![deny(borrowed_box)]
| ^^^^^^^^^^^^
2017-06-10 22:50:57 -05:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
2017-08-01 10:54:21 -05:00
--> $DIR/borrow_box.rs:14:14
|
14 | 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`
2017-08-01 10:54:21 -05:00
--> $DIR/borrow_box.rs:18:10
2017-06-10 22:50:57 -05:00
|
2017-06-11 09:49:34 -05:00
18 | 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`
2017-08-01 10:54:21 -05:00
--> $DIR/borrow_box.rs:22:17
|
22 | fn test4(a: &Box<bool>);
2017-07-21 03:40:23 -05:00
| ^^^^^^^^^^ help: try: `&bool`