summary refs log tree commit diff
path: root/src/test/ui/issue-27042.stderr
blob: 4811344558262fbf6b7640832099f880a891fc33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
error[E0308]: mismatched types
  --> $DIR/issue-27042.rs:16:16
   |
LL |         loop { break }; //~ ERROR mismatched types
   |                ^^^^^ expected (), found i32
   |
   = note: expected type `()`
              found type `i32`

error[E0308]: mismatched types
  --> $DIR/issue-27042.rs:18:9
   |
LL | /         'b: //~ ERROR mismatched types
LL | |         while true { break }; // but here we cite the whole loop
   | |____________________________^ expected i32, found ()
   |
   = note: expected type `i32`
              found type `()`

error[E0308]: mismatched types
  --> $DIR/issue-27042.rs:21:9
   |
LL | /         'c: //~ ERROR mismatched types
LL | |         for _ in None { break }; // but here we cite the whole loop
   | |_______________________________^ expected i32, found ()
   |
   = note: expected type `i32`
              found type `()`

error[E0308]: mismatched types
  --> $DIR/issue-27042.rs:24:9
   |
LL | /         'd: //~ ERROR mismatched types
LL | |         while let Some(_) = None { break };
   | |__________________________________________^ expected i32, found ()
   |
   = note: expected type `i32`
              found type `()`

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0308`.