summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/issue-63364.stderr
blob: 9b5453fa82d4c78f76563518355f09be28d4eb31 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: literal out of range for `u16`
  --> $DIR/issue-63364.rs:6:14
   |
LL |     for n in 100_000.. {
   |              ^^^^^^^
   |
   = note: the literal `100_000` does not fit into the type `u16` whose range is `0..=65535`
   = note: `#[deny(overflowing_literals)]` on by default

error: aborting due to previous error