]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/int-literal-too-large-span.rs
Rollup merge of #106570 - Xaeroxe:div-duration-tests, r=JohnTitor
[rust.git] / tests / ui / parser / int-literal-too-large-span.rs
1 // issue #17123
2
3 fn main() {
4     9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
5     //~^ ERROR integer literal is too large
6         ; // the span shouldn't point to this.
7 }