summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/int-literal-too-large-span.rs
blob: 666ca9350597674a8d631b8bab35eb5d75111985 (plain)
1
2
3
4
5
6
7
// issue #17123

fn main() {
    9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
    //~^ ERROR integer literal is too large
        ; // the span shouldn't point to this.
}