]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/borrow_box.stderr
iterate List by value
[rust.git] / tests / ui / borrow_box.stderr
index 7cc8eb8da40c4c797a5af0f7b6d9660ad317dd11..b5db691f89f3936848d9856ef287690513816a15 100644 (file)
@@ -1,32 +1,26 @@
 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
-  --> $DIR/borrow_box.rs:19:19
+  --> $DIR/borrow_box.rs:19:14
    |
-19 | pub fn test1(foo: &mut Box<bool>) {
-   |                   ^^^^^^^^^^^^^^ help: try: `&mut bool`
+LL |     let foo: &Box<bool>;
+   |              ^^^^^^^^^^ help: try: `&bool`
    |
-note: lint level defined here
-  --> $DIR/borrow_box.rs:14:9
+note: the lint level is defined here
+  --> $DIR/borrow_box.rs:1:9
    |
-14 | #![deny(clippy::borrowed_box)]
+LL | #![deny(clippy::borrowed_box)]
    |         ^^^^^^^^^^^^^^^^^^^^
 
 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
-  --> $DIR/borrow_box.rs:24:14
-   |
-24 |     let foo: &Box<bool>;
-   |              ^^^^^^^^^^ help: try: `&bool`
-
-error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
-  --> $DIR/borrow_box.rs:28:10
+  --> $DIR/borrow_box.rs:23:10
    |
-28 |     foo: &'a Box<bool>
+LL |     foo: &'a Box<bool>,
    |          ^^^^^^^^^^^^^ help: try: `&'a bool`
 
 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
-  --> $DIR/borrow_box.rs:32:17
+  --> $DIR/borrow_box.rs:27:17
    |
-32 |     fn test4(a: &Box<bool>);
+LL |     fn test4(a: &Box<bool>);
    |                 ^^^^^^^^^^ help: try: `&bool`
 
-error: aborting due to 4 previous errors
+error: aborting due to 3 previous errors