]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/borrow_box.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / borrow_box.stderr
1 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
2  --> borrow_box.rs:9:19
3   |
4 9 | pub fn test1(foo: &mut Box<bool>) {
5   |                   ^^^^^^^^^^^^^^ help: try `&mut bool`
6   |
7 note: lint level defined here
8  --> borrow_box.rs:4:9
9   |
10 4 | #![deny(borrowed_box)]
11   |         ^^^^^^^^^^^^
12
13 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
14   --> borrow_box.rs:14:14
15    |
16 14 |     let foo: &Box<bool>;
17    |              ^^^^^^^^^^ help: try `&bool`
18
19 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
20   --> borrow_box.rs:18:10
21    |
22 18 |     foo: &'a Box<bool>
23    |          ^^^^^^^^^^^^^ help: try `&'a bool`
24
25 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
26   --> borrow_box.rs:22:17
27    |
28 22 |     fn test4(a: &Box<bool>);
29    |                 ^^^^^^^^^^ help: try `&bool`
30
31 error: aborting due to previous error(s)
32
33
34 To learn more, run the command again with --verbose.