rust/tests/ui/parser/int-literal-too-large-span.rs

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

8 lines
221 B
Rust
Raw Normal View History

// issue #17123
fn main() {
2016-08-24 22:38:14 +03:00
9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
//~^ ERROR integer literal is too large
; // the span shouldn't point to this.
}