]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/issue-79744.stderr
Rollup merge of #106441 - mllken:abstract-socket-noref, r=joshtriplett
[rust.git] / tests / ui / lint / issue-79744.stderr
1 error: literal out of range for `i8`
2   --> $DIR/issue-79744.rs:3:14
3    |
4 LL |     let e2 = 230;
5    |              ^^^
6    |
7    = note: the literal `230` does not fit into the type `i8` whose range is `-128..=127`
8    = help: consider using the type `u8` instead
9    = note: `#[deny(overflowing_literals)]` on by default
10
11 error: aborting due to previous error
12