]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/borrow_box.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / borrow_box.stderr
index 2cf0ea79626c91cc4d28aed099a2803c7f18996d..0cb455433c4219dddce5a4779bef2b4c64572d47 100644 (file)
@@ -1,31 +1,31 @@
 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
--> $DIR/borrow_box.rs:9:19
-  |
-9 | pub fn test1(foo: &mut Box<bool>) {
-  |                   ^^^^^^^^^^^^^^ help: try: `&mut bool`
-  |
 --> $DIR/borrow_box.rs:6:19
+   |
+LL | pub fn test1(foo: &mut Box<bool>) {
+   |                   ^^^^^^^^^^^^^^ help: try: `&mut bool`
+   |
 note: lint level defined here
--> $DIR/borrow_box.rs:4:9
-  |
-4 | #![deny(borrowed_box)]
-  |         ^^^^^^^^^^^^
 --> $DIR/borrow_box.rs:1:9
+   |
+LL | #![deny(clippy::borrowed_box)]
+   |         ^^^^^^^^^^^^^^^^^^^^
 
 error: you seem to be trying to use `&Box<T>`. Consider using just `&T`
-  --> $DIR/borrow_box.rs:14:14
+  --> $DIR/borrow_box.rs:11:14
    |
-14 |     let foo: &Box<bool>;
+LL |     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:18:10
+  --> $DIR/borrow_box.rs:15:10
    |
-18 |     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:22:17
+  --> $DIR/borrow_box.rs:19:17
    |
-22 |     fn test4(a: &Box<bool>);
+LL |     fn test4(a: &Box<bool>);
    |                 ^^^^^^^^^^ help: try: `&bool`
 
 error: aborting due to 4 previous errors