summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/issue-79744.stderr
blob: c1b56250d3ed9ca4111b094f17881e2b8083a04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: literal out of range for `i8`
  --> $DIR/issue-79744.rs:3:14
   |
LL |     let e2 = 230;
   |              ^^^
   |
   = note: the literal `230` does not fit into the type `i8` whose range is `-128..=127`
   = help: consider using the type `u8` instead
   = note: `#[deny(overflowing_literals)]` on by default

error: aborting due to previous error