rust/tests/ui/lint/issue-63364.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
151 B
Rust
Raw Normal View History

fn part(_: u16) -> u32 {
1
}
fn main() {
for n in 100_000.. {
//~^ ERROR: literal out of range for `u16`
let _ = part(n);
}
}