]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-27042.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-27042.stderr
index 7678984a518ba89bdc84ada86fef76bb10e00b41..69c452b88f315409196034ce69f682b7ef973e31 100644 (file)
@@ -14,42 +14,34 @@ error[E0308]: mismatched types
 LL |         loop { break };
    |                ^^^^^
    |                |
-   |                expected i32, found ()
+   |                expected `i32`, found `()`
    |                help: give it a value of the expected type: `break 42`
-   |
-   = note: expected type `i32`
-              found type `()`
 
 error[E0308]: mismatched types
   --> $DIR/issue-27042.rs:8:9
    |
+LL |       let _: i32 =
+   |              --- expected due to this
 LL | /         'b:
 LL | |
 LL | |         while true { break }; // but here we cite the whole loop
-   | |____________________________^ expected i32, found ()
-   |
-   = note: expected type `i32`
-              found type `()`
+   | |____________________________^ expected `i32`, found `()`
 
 error[E0308]: mismatched types
   --> $DIR/issue-27042.rs:12:9
    |
 LL | /         'c:
 LL | |         for _ in None { break }; // but here we cite the whole loop
-   | |_______________________________^ expected i32, found ()
-   |
-   = note: expected type `i32`
-              found type `()`
+   | |_______________________________^ expected `i32`, found `()`
 
 error[E0308]: mismatched types
   --> $DIR/issue-27042.rs:15:9
    |
+LL |       let _: i32 =
+   |              --- expected due to this
 LL | /         'd:
 LL | |         while let Some(_) = None { break };
-   | |__________________________________________^ expected i32, found ()
-   |
-   = note: expected type `i32`
-              found type `()`
+   | |__________________________________________^ expected `i32`, found `()`
 
 error: aborting due to 4 previous errors