]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/int-literal-too-large-span.rs
Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d' into update_cg_clif-2020...
[rust.git] / src / test / 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 }