summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/issue-79744.stderr
blob: 6f6dd44d2369e644c957e9d86c583561294c6248 (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: `#[deny(overflowing_literals)]` on by default
   = note: the literal `230` does not fit into the type `i8` whose range is `-128..=127`
   = help: consider using the type `u8` instead

error: aborting due to previous error