]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/issue-63364.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / lint / issue-63364.stderr
1 error: literal out of range for `u16`
2   --> $DIR/issue-63364.rs:6:14
3    |
4 LL |     for n in 100_000.. {
5    |              ^^^^^^^
6    |
7    = note: the literal `100_000` does not fit into the type `u16` whose range is `0..=65535`
8    = note: `#[deny(overflowing_literals)]` on by default
9
10 error: aborting due to previous error
11