summary refs log tree commit diff
path: root/src/test/ui/break-while-condition.stderr
blob: c8f06db960392b5d8a72837130d912dc1489dfab (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
43
error[E0308]: mismatched types
  --> $DIR/break-while-condition.rs:19:20
   |
LL |           let _: ! = { //~ ERROR mismatched types
   |  ____________________^
LL | |             'a: while break 'a {};
LL | |         };
   | |_________^ expected !, found ()
   |
   = note: expected type `!`
              found type `()`

error[E0308]: mismatched types
  --> $DIR/break-while-condition.rs:26:13
   |
LL |   fn main() {
   |             - expected `()` because of default return type
...
LL | /             while false { //~ ERROR mismatched types
LL | |                 break
LL | |             }
   | |_____________^ expected !, found ()
   |
   = note: expected type `!`
              found type `()`

error[E0308]: mismatched types
  --> $DIR/break-while-condition.rs:34:13
   |
LL |   fn main() {
   |             - expected `()` because of default return type
...
LL | /             while false { //~ ERROR mismatched types
LL | |                 return
LL | |             }
   | |_____________^ expected !, found ()
   |
   = note: expected type `!`
              found type `()`

error: aborting due to 3 previous errors

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