]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/int-literal-too-large-span.rs
Merge commit '598f0909568a51de8a2d1148f55a644fd8dffad0' into sync_cg_clif-2023-01-24
[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 }