mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
325 B
Plaintext
12 lines
325 B
Plaintext
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
|
|
|