File: mismatch-ty-unwrap-expect.stderr

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (93 lines) | stat: -rw-r--r-- 3,126 bytes parent folder | download | duplicates (5)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
error[E0308]: mismatched types
  --> $DIR/mismatch-ty-unwrap-expect.rs:10:18
   |
LL |     let v: i32 = b;
   |            ---   ^ expected `i32`, found `Result<i32, ()>`
   |            |
   |            expected due to this
   |
   = note: expected type `i32`
              found enum `Result<i32, ()>`
help: use the `?` operator to extract the `Result<i32, ()>` value, propagating a `Result::Err` value to the caller
   |
LL |     let v: i32 = b?;
   |                   +

error[E0308]: mismatched types
  --> $DIR/mismatch-ty-unwrap-expect.rs:16:18
   |
LL |     let v: i32 = b;
   |            ---   ^ expected `i32`, found `Option<{integer}>`
   |            |
   |            expected due to this
   |
   = note: expected type `i32`
              found enum `Option<{integer}>`
help: use the `?` operator to extract the `Option<{integer}>` value, propagating an `Option::None` value to the caller
   |
LL |     let v: i32 = b?;
   |                   +

error[E0308]: mismatched types
  --> $DIR/mismatch-ty-unwrap-expect.rs:22:18
   |
LL |     let v: i32 = a;
   |            ---   ^ expected `i32`, found `Option<{integer}>`
   |            |
   |            expected due to this
   |
   = note: expected type `i32`
              found enum `Option<{integer}>`
help: consider using `Option::expect` to unwrap the `Option<{integer}>` value, panicking if the value is an `Option::None`
   |
LL |     let v: i32 = a.expect("REASON");
   |                   +++++++++++++++++

error[E0308]: mismatched types
  --> $DIR/mismatch-ty-unwrap-expect.rs:25:18
   |
LL |     let v: i32 = b;
   |            ---   ^ expected `i32`, found `Result<i32, ()>`
   |            |
   |            expected due to this
   |
   = note: expected type `i32`
              found enum `Result<i32, ()>`
help: consider using `Result::expect` to unwrap the `Result<i32, ()>` value, panicking if the value is a `Result::Err`
   |
LL |     let v: i32 = b.expect("REASON");
   |                   +++++++++++++++++

error[E0308]: mismatched types
  --> $DIR/mismatch-ty-unwrap-expect.rs:27:18
   |
LL |     let v: i32 = func();
   |            ---   ^^^^^^ expected `i32`, found `Option<i32>`
   |            |
   |            expected due to this
   |
   = note: expected type `i32`
              found enum `Option<i32>`
help: consider using `Option::expect` to unwrap the `Option<i32>` value, panicking if the value is an `Option::None`
   |
LL |     let v: i32 = func().expect("REASON");
   |                        +++++++++++++++++

error[E0308]: mismatched types
  --> $DIR/mismatch-ty-unwrap-expect.rs:30:18
   |
LL |     let v: i32 = a;
   |            ---   ^ expected `i32`, found `Option<_>`
   |            |
   |            expected due to this
   |
   = note: expected type `i32`
              found enum `Option<_>`
help: consider using `Option::expect` to unwrap the `Option<_>` value, panicking if the value is an `Option::None`
   |
LL |     let v: i32 = a.expect("REASON");
   |                   +++++++++++++++++

error: aborting due to 6 previous errors

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