]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-24036.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-24036.stderr
index 24995be773e7ad011769529229d4624479691601..9f799c9b450692df8bd8a2c9544908a9f7ab168c 100644 (file)
@@ -1,16 +1,16 @@
 error[E0308]: mismatched types
-  --> $DIR/issue-24036.rs:13:9
+  --> $DIR/issue-24036.rs:3:9
    |
 LL |     x = |c| c + 1;
    |         ^^^^^^^^^ expected closure, found a different closure
    |
-   = note: expected type `[closure@$DIR/issue-24036.rs:12:17: 12:26]`
-              found type `[closure@$DIR/issue-24036.rs:13:9: 13:18]`
+   = note: expected type `[closure@$DIR/issue-24036.rs:2:17: 2:26]`
+              found type `[closure@$DIR/issue-24036.rs:3:9: 3:18]`
    = note: no two closures, even if identical, have the same type
    = help: consider boxing your closure and/or using it as a trait object
 
 error[E0308]: match arms have incompatible types
-  --> $DIR/issue-24036.rs:18:13
+  --> $DIR/issue-24036.rs:8:13
    |
 LL |       let x = match 1usize {
    |  _____________^
@@ -22,8 +22,8 @@ LL | |         _ => |c| c - 1
 LL | |     };
    | |_____^ expected closure, found a different closure
    |
-   = note: expected type `[closure@$DIR/issue-24036.rs:20:14: 20:23]`
-              found type `[closure@$DIR/issue-24036.rs:21:14: 21:23]`
+   = note: expected type `[closure@$DIR/issue-24036.rs:10:14: 10:23]`
+              found type `[closure@$DIR/issue-24036.rs:11:14: 11:23]`
    = note: no two closures, even if identical, have the same type
    = help: consider boxing your closure and/or using it as a trait object