]> git.lizzy.rs Git - rust.git/blob - tests/ui/wrong-ret-type.stderr
Rollup merge of #106709 - khuey:disable_split_dwarf_inlining_by_default, r=davidtwco
[rust.git] / tests / ui / wrong-ret-type.stderr
1 error[E0308]: mismatched types
2   --> $DIR/wrong-ret-type.rs:2:49
3    |
4 LL | fn mk_int() -> usize { let i: isize = 3; return i; }
5    |                -----                            ^ expected `usize`, found `isize`
6    |                |
7    |                expected `usize` because of return type
8    |
9 help: you can convert an `isize` to a `usize` and panic if the converted value doesn't fit
10    |
11 LL | fn mk_int() -> usize { let i: isize = 3; return i.try_into().unwrap(); }
12    |                                                  ++++++++++++++++++++
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0308`.