rust/clippy_tests/examples/borrow_box.stderr

30 lines
812 B
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`
2017-06-11 16:49:34 +02:00
--> borrow_box.rs:9:19
|
9 | pub fn test1(foo: &mut Box<bool>) {
| ^^^^^^^^^^^^^^ help: try `&mut bool`
|
2017-06-11 05:50:57 +02:00
note: lint level defined here
2017-06-11 16:49:34 +02:00
--> borrow_box.rs:4:9
|
4 | #![deny(borrowed_box)]
| ^^^^^^^^^^^^
2017-06-11 05:50:57 +02:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
--> borrow_box.rs:14:14
|
14 | let foo: &Box<bool>;
| ^^^^^^^^^^ help: try `&bool`
2017-06-11 05:50:57 +02:00
error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
2017-06-11 16:49:34 +02:00
--> borrow_box.rs:18:10
2017-06-11 05:50:57 +02:00
|
2017-06-11 16:49:34 +02:00
18 | foo: &'a Box<bool>
| ^^^^^^^^^^^^^ help: try `&'a bool`
2017-06-11 05:50:57 +02:00
error: aborting due to previous error(s)
error: Could not compile `clippy_tests`.
To learn more, run the command again with --verbose.