mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
151 B
Rust
11 lines
151 B
Rust
fn part(_: u16) -> u32 {
|
|
1
|
|
}
|
|
|
|
fn main() {
|
|
for n in 100_000.. {
|
|
//~^ ERROR: literal out of range for `u16`
|
|
let _ = part(n);
|
|
}
|
|
}
|