aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/hex_literal_overflow.out
blob: 9475150399a6092c7501ae4586ee1f36213c6de2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
vlib/v/checker/tests/hex_literal_overflow.vv:1:7: error: hex character literal overflows string
    1 | a := '\x11ffff'
      |       ~~~~~~~~
    2 | b := '\x20ffff'
    3 | c := '\x10fffff'
vlib/v/checker/tests/hex_literal_overflow.vv:2:7: error: hex character literal overflows string
    1 | a := '\x11ffff'
    2 | b := '\x20ffff'
      |       ~~~~~~~~
    3 | c := '\x10fffff'
    4 | println(a)
vlib/v/checker/tests/hex_literal_overflow.vv:3:7: error: hex character literal overflows string
    1 | a := '\x11ffff'
    2 | b := '\x20ffff'
    3 | c := '\x10fffff'
      |       ~~~~~~~~~
    4 | println(a)
    5 | println(b)