]> git.lizzy.rs Git - rust.git/blobdiff - clippy_tests/examples/borrow_box.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / borrow_box.stderr
index 1b354dd81df96c1eb5d67609741f63a73beb2b84..1ac5c0735db2e67f154ce050e2f397babce585a5 100644 (file)
@@ -10,14 +10,25 @@ note: lint level defined here
 4 | #![deny(borrowed_box)]
   |         ^^^^^^^^^^^^
 
+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`
+
 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
   --> borrow_box.rs:18:10
    |
 18 |     foo: &'a Box<bool>
    |          ^^^^^^^^^^^^^ help: try `&'a bool`
 
+error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
+  --> borrow_box.rs:22:17
+   |
+22 |     fn test4(a: &Box<bool>);
+   |                 ^^^^^^^^^^ help: try `&bool`
+
 error: aborting due to previous error(s)
 
-error: Could not compile `clippy_tests`.
 
 To learn more, run the command again with --verbose.